Mysql
 sql >> Database >  >> RDS >> Mysql

Come ottenere il risultato di una query select count(*) in PHP?

Il tuo codice non include alcuna istruzione di recupero. E come nota un'altra risposta, hai bisogno di virgolette singole attorno a $_SESSION["username"] .

$result = mysql_query("select count(*) from registeredUsers where email='{$_SESSION['username']}'");

// Verify it worked
if (!$result) echo mysql_error();

$row = mysql_fetch_row($result);

// Should show you an integer result.
print_r($row);