Hi,
I'm writing a sign up form, and I have this:
<?php
for($j = 1; $j <= 12; $j++)
{
$month = date("F", mktime(0, 0, 0, j, 1, 2000));
echo '<option value="'.$month.'">'.$month.'</option>';
}
?>
The problem is that my select box shows 'January' 12 times, but I want January, February, March etc... through December. How can I fix this? Thanks.