I want print links in cycle
<?php
for ($i = 0; $i<5; $i++) {
?>
<a href="#">a</a>
<?php
}
?>
Problem is that when I see source, each links are write in new line, I need that every will same line.
I can make this:
$str = '';
for ($i = 0; $i<5; $i++) {
str .= '<a href="#">a</a>';
}
echo $str;
and result is what I need, but I like first coding style (say, MVC coding style). What is solution in first coding style, for writing tags same line ?