Questo è il codice,praticamente adesso mi da questo errore:

"Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Pagina.php on line 120"






|Dove la riga 120 è "while ($row = mysql_fetch_assoc($result)) {"
|
|<?php
|$Connessione=mysql_connect("localhost","root","") or die("Connessione |fallita".mysql_error());
|mysql_select_db("datiregistrazioneabbyross",$Conn essione) or die("Connessione |fallita".mysql_error());
|$ricevuta="SELECT * FROM utenteprimario WHERE Email=='$_SESSION["Email"]'";
|$result = mysql_query($ricevuta);
|
---->while ($row = mysql_fetch_assoc($result)) {


$_SESSION["Nome"]=$row["Nome"];
$_SESSION["Cognome"]=$row["Cognome"];
$_SESSION["Email"]=$row["Email"];
$_SESSION["GiornoNascita"]=$row["GiornoDiNascita"];
$_SESSION["MeseNascita"]=$row["MeseDiNascita"];
$_SESSION["AnnoNascita"]=$row["AnnoDiNascita"];

$_SESSION["Sesso"]=$row["Sesso"];
$_SESSION["ID"]=$row["ID"];


}
?>


Mi da anche questo errore:"Nome:
Notice: Undefined index: Nome in C:\xampp\htdocs\Pagina.php on line 142"

Nella quale è presente questa istruzione:
<?php
echo $_SESSION["Nome"];
?>