Here's my php program, I think $result never gets assigned a value, staying
null or whatever.

$link = mysql_connect("host");

mysql_select_db("dbname");

$result = mysql_query ("SELECT * FROM table");

$fields = mysql_num_fields ($result);
$rows = mysql_num_rows ($result);

$table = mysql_field_table ($result, $i);

echo "Your '".$table."' table has ".$fields." fields and ".$rows." records
<BR>"

- - EOP - -

The problem comes on the lines that reference the variable $result.

I keep getting this in the browser... leading me to believe that $result is
null:

Warning: Supplied argument is not a valid MySQL result resource


help!

Thankx0r

Ryan




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to