i was wondering how to how seprate php from html while fetching rows from database..
.
.
<?while($row=mysql_fetch_array($result))
{?>
<td><?$row['firstname']?></td>
<td><?$row['lastname']?></td>
<?}?>
can i separate php and html in above case.>?
.
.
thank u