Can anyone tell me why this isn't working:
<?php
$selected = $onenav->day;
for ($i = 1; $i <= 31; $i++)
{
foreach ($i as $key => $val)
{
$disabled = $key == $selected ? "SELECTED" : "";
echo "<option $disabled value=\"$key\">$val</option>";
}
}
?>
What am I doing wrong? Its not outputting anything.