Sostituisci:

Codice PHP:
...
$result mysql_query("select * from utenti");
... 
con:

Codice PHP:
...
$result mysql_query("select * from utenti") or die ("Errore: ".mysql_error());
... 
e vedi cosa ti viene fuori.