Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
Why does it matter how the HTML looks like? Just curious. – Felix Kling Jan 3 at 11:45
2  
Thats not MVC coding style :P – shiplu.mokadd.im Jan 3 at 11:48
@ Felix Not only source visual jsfiddle.net/CxJy9 jsfiddle.net/CxJy9/1 – OTARIKI Jan 3 at 11:51
Actually the coding style in the second example is much better for performance, you shouldn't force the parser in and out of PHP mode like the first one does. – Chaoley Jan 5 at 9:08

1 Answer

up vote 6 down vote accepted
<?php
for ($i = 0; $i<5; $i++) {
    ?><a href="#">a</a><?php
}
?>

You need to remove the whitespace.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.