Jump to content

How to get years between 2 set years


t_machine

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]

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.