Codice PHP:
<? 
$query 
"SELECT DISTINCT `GENERE` FROM `articoli`ORDER by 'GENERE' ASC";
cos'è sto pezzo?
Codice PHP:
$esegui mysql_query ($query,$db) or die ("Connessione non riuscita"); 
Codice PHP:
$option="<select name=\"select_genere\">"
while (
$array mysql_fetch_array ($esegui)){ 
$array[GENERE] = stripslashes($array[GENERE]); 
$option.="<option value=\"$array[GENERE]\">$array[GENERE]</option>"

$option.="</select>"
echo 
"$option"
?>