Hi all,
The following should display a record count, however im getting to a blank screen.
Can anybody see why this query wont display anything?
<?php
$link = mysql_connect("localhost", "uname", "pword");
mysql_select_db("dbname", $link);
$result = mysql_query("SELECT ID FROM tbl_sellers", $link);
$num_rows = mysql_num_rows($result);
echo "$num_rows Rows\n";
?>
i get no errors, just a blank screen