Posted by julian_m on 03/24/06 19:23
given that php
echo '<div>';
echo 'whatever';
echo '</div>';
echo '<div>';
echo 'whatever';
echo '</div>';
echo '<div>';
echo 'whatever';
echo '</div>';
echo '<div>';
echo 'whatever';
echo '</div>';
the output html is
<div>whatever</div><div>whatever</div><div>whatever</div><div>whatever</div>
whereas I would like to have as output the following (It's better in
order to read and understand the html code)
<div>
whatever
</div>
<div>
whatever
</div>
<div>
whatever
</div>
<div>
whatever
</div>
How should I do ?
regards - jm
Navigation:
[Reply to this message]
|