php - Number of gamertags in a table? -


i want print total number of gamertags in table equals rows.

$total = mysql_query('select count(*) gamertags'); print $total; 

the code above prints idk why?

resource id #3 

i agree other guys, it's explained on that page. here's answer anyway...

$result = mysql_query('select count(*) gamertags'); $total = mysql_result($result, 0); echo $total; 

Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

Disabling Android home button for industry application -

asp.net mvc 3 - Unexpected "foreach" keyword after "@" character -