2nite i created loads more files that I uploaded none of them were able to connect
to my db
http://www.nelie.org/robbyjb/welcome.html
there is some code here that I use
I created 1z
http://www.nelie.org/robbyjb/1z.php
Warning: Supplied argument is not a valid MySQL result resource in /isp/home/maxiweb/robbyjb/1z.php on line 15
<HEAD>
<TITLE>mysql_list_tables</TITLE>
</HEAD>
<BODY>
<?
// connect to server
$mysql_link = mysql_connect("localhost", "", "");
// get list of tables
$mysql_result =
mysql_list_tables("psytrance", $mysql_link);
// get each row
while($row = mysql_fetch_row($mysql_result))
{
// print name
print($row[0]);
}
?>
</BODY>