Anche se dovresti usare l'estensione mysqli_, piuttosto che mysql_, vorresti qualcosa del tipo:
$result = mysql_query("SELECT * FROM userid WHERE username = '" . $username . "'")
or die(mysql_error());
if(mysql_num_rows($result) == 1) {
//Found the user
$row = mysql_fetch_array($result);
//Results can be accessed like $row['username'] and $row['Email']
} else {
//Too few or too many records were found
}
Nota:ho usato username='$username' come esempio. Sarebbe meglio tenere traccia dell'ID utente dal processo di accesso poiché l'ID si riferisce a una riga specifica.