I have put this PHP event calendar on my development system. How can I disable adding event on a Saturday or a Sunday? :) Do you think this has to do with this code?
function dayPullDown($day)
{
echo "<select name=\"day\">\n";
$selected[$day] = ' selected="selected"';
for($i=1;$i <= 31; $i++) {
$sel = (isset($selected[$i])) ? $selected[$i] : "";
echo " <option value=\"$i\"$sel>$i</option>\n";
}
echo "</select>\n\n";}