I am getting this error:
Warning: Unable to jump to row 26 on MySQL result index 2 in admin.php on line 5
with this code:
<?php
require "./access.php";
$i = 0;
$result = mysql_listtables('austincrap');
while ($name[$i] = mysql_tablename($result, $i)) {
//echo $name[$i] . "<BR>";
print "(<A HREF=\"./admin.php?table=$name[$i]\">$name[$i]</A>)\n";
$i++;
}
?>
any all help is appreciated, just want to pull out the table names then make them an active link as above. the problem is independent of the HREF link stuff since I can just echo $name[$i] and I get the same error.
TIA,
/frank