[snip]
$i=0;
$q="select * from links'";
while ($i<mysql_num_rows($result))
  {
   $link=eval(mysql_result($result,$i,"link"));
.....
.....
 and then i put this:
[/snip]

What happens if you do this?

while($i < mysql_num_rows($result)){
        $link = eval($result);
        echo $link;
}


P.S. Please reply to the list too, I am quite busy and may not be able
to follow up.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to