markman641
09-03-2011, 03:43 AM
I have the 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>
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?
<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>
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?