I have the code:
and for some reason it randomly indents the lines... and after i refresh a few times it goes away. it seems to only be doing this with the first result/line
whats going on?
Code:
<P ALIGN="LEFT"> <? $get_name = mysql_query("SELECT * FROM `lastcredited` ORDER BY `date` DESC LIMIT 0, 10"); while($namerow = mysql_fetch_array($get_name)) { $name1 = $namerow["name"]; $countr = $namerow["country"]; $id = $namerow["id"]; ?> <a href="search.php?q=<?=$name1?>&Submit=Search"><?=$name1?></a><br><br> <? }?></P>
whats going on?
Comment