Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

5 Answers

up vote 5 down vote accepted

You are missing a dollar sign in front of "j" here:

$month = date("F", mktime(0, 0, 0, j, 1, 2000));
share|improve this answer
1  
Yep, you are right. It works now. Thanks! – rightfold Nov 16 '09 at 15:01

Do you mean

$month = date("F", mktime(0, 0, 0, $j, 1, 2000));

Notice the $ on the j

share|improve this answer

It's $j.

$month = date("F", mktime(0, 0, 0, $j, 1, 2000));
share|improve this answer

Should it be

mktime(0, 0, 0, $j , 1, 2000));

$j instead of j

share|improve this answer

syntax error? j needs a $:

$month = date("F", mktime(0, 0, 0, $j, 1, 2000));

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.