26.07.2013, 12:48
http://php.net/manual/en/function.mysql-fetch-row.php
You filled in the wrong information into mysql_fetch_row.
So:
You filled in the wrong information into mysql_fetch_row.
So:
PHP код:
$sql = "SELECT * FROM Clubs";
$rs_result = mysql_query ($sql,$connection);
$row = mysql_fetch_row($rs_result);
$totalIds = $row[0];

