I have a problem with this query and drop down box:
$ziua = "SELECT DISTINCT DAYOFMONTH(ziua) FROM rapoarte";
$ziuaResult = mysql_query($ziua);
Populating the drop down box :
echo"<td>Selectati Ziua:</td>
<td><select name='ziua'>
<option value='---'>---</option>";
while($ziuaRow = mysql_fetch_array($ziuaResult))
{
$ziua1 = $ziuaRow['ziua'];
echo "<option value='$ziua1'>$ziua1</option>";
}
For an reason unknown to me, the drop down box is populated, but no values are shown. (there are 2-3 empty options)