I want to make a loop to start from 50 years go to 13 years ago from this year.
I want to display them in a Combobox (dropdown) for a Join us page. This will help with age verification (kinda).
so for this year it should display 1957 - 1994. I have this much code:
i just dont know the loop part...PHP Code:$startdate = date("Y") - 50;
$enddate = date("Y") - 13;




Reply With Quote