PHP + Mysql help
#2

Change
PHP код:
$sql "SELECT * FROM Clubs";
$rs_result mysql_query ($sql,$connection);
$id mysql_fetch_row($sql$connection);
$totalIds $row[0]; 
with
PHP код:
$rs_result mysql_query ("SELECT * FROM Clubs",$connection);
$row mysql_fetch_row($rs_result$connection);
$totalIds $row[0]; 
Also, this is not a forum for PHP help.

EDIT: I don't think this will do what you wanted.
Reply


Messages In This Thread
PHP + Mysql help - by thimo - 26.07.2013, 12:39
Re: PHP + Mysql help - by IstuntmanI - 26.07.2013, 13:44

Forum Jump:


Users browsing this thread: 1 Guest(s)