Salve, voglio capire perchè questa query anche se non trova risultati mi riporta 1 come valore conteggio??
Codice PHP:
$query = "SELECT id FROM ".$_CONFIG['table_utenti']." WHERE username='".$Username."'";
$query_rsl = mysql_query($query)OR DIE (mysql_error());
$row_rsl = count(mysql_fetch_array($query_rsl));
echo $row_rsl;