Hi,
I'm trying to create some rows in a table using php code.
Its like this:
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td width>some item</td>
</tr>
<?php
echo drawRow(); // draw another similar row
?>
</table>
But it turns out that the row is drawn before the table. In other words, it
seems like the php code is executed before the HTML code.
So what should I do instead?
Any help is appreciated, thank you.