Codice PHP:
<?
include ("config.inc.php");
include (
"top_foot.inc.php");
//intestazione
top();
?>

<?
$sql 
"SELECT id, nome, cognome FROM clienti ORDER BY cognome ASC, nome ASC"
$query mysql_query($sql
OR DIE(
"Errore Numero: ".mysql_errno()." - Descrizione: ".mysql_error();
echo 
"<select name=\"utente\" id=\"utente\">"
while (
$fetch mysql_fetch_array($query)) { 
$id $fetch['id']; 
$nome $fetch['nome']; 
$cognome $fetch['cognome']; 
echo 
"<option value=$id>$cognome $nome</option>"

echo 
"</select>"
mysql_free_result($query);
foot();
?>


credo che la riga sia questa

OR DIE("Errore Numero: ".mysql_errno()." - Descrizione: ".mysql_error().;