Ciao a tutti.
Ho il seguente problema:
Inizio con

"$CART = "SELECT * FROM ricerca WHERE rUname LIKE '$UN'";
$SQLCART = mysql_query($CART) or die("Query non riuscita: " . mysql_error());"

La connessione è OK.
Seguo con :
"$numrow = mysql_num_rows ($SQLCART);" mi restituisce 21 records.
Continuo con:
"while ($row=mysql_fetch_array($SQLCART))
{
print "$row[rIDRichiesta]";
Print "
";
}"

Il dannato me ne elenca solo 20. !!
Mi salta il primo record.

Vi pregherei di aiutarmi dandomi una spiegazione di cosa sta avvenendo e dove sbaglio.

Grazie in anticipo e saluti.

Roberto