Jump to content

Recommended Posts

hi, I am creating a form and i would like the select to contain the start year and all the years between  then and the current year.

example:
<select name="year">
  <option value="2001">2001</option>

//How do i get the years in between 2001 to current 2007

  <option value="2007">2007</option>
</select>

The idea would be that the script can auto update the year with each new year but still going back to 2001 as the start date. I hope someone can help with this or if there is a much better way to accomplish this.

Thanks :)
Link to comment
https://forums.phpfreaks.com/topic/35277-how-to-get-years-between-2-set-years/
Share on other sites

...and that's why I'm opposed to being able to edit posts.

p.s.- little guy: your loop is still wrong. The OP mentioned nothing about 2020, and even if he did, 2020 is in the future, compared to 2007, so all you did when you changed it was make it false from teh getgo.
Thank you all very much for the replies :)

jesirose, yours worked perfectly. I had to make a minor addition to display the current year, it stopped displaying at 2006

[quote]for($i=2001; $i<date("Y")+1; $i++){
  print '<option value="'.$i.'">'.$i.'</option>';
}[/quote]
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.