[/CODE]
</head>
<body>
<select onchange="mostraInfo(this.value)">
<table width="500px" border="0" cellpadding="5">
<tr>
<td>Dipendente</td>
<td>
<?php
$query="SELECT DISTINCT dipendente FROM TabellaOrari ORDER BY dipendente ASC";
$result =mysql_query($query);
while ($row = mysql_fetch_assoc($result)){
echo "<option value='".$row['dipendente']."'>".$row['dipendente']."</option>";
}
?>
</select>
</body>
</html>
[CODE]
Il codice è il seguente come da tuo suggerimento ma comunque ho la visualizzazione della pagina bianca e neanche il menù a tendina viene visualizzato