Return to Snippet

Revision: 70916
at September 14, 2016 23:00 by acosonic


Initial Code
<?php 

//this code generates option tags for select dropdown

for($i=date("Y");$i<date("Y")+11;$i++) echo "<option value=\"$i\">$i</option>"; ?>

Initial URL


Initial Description
This snippet adds credit card select box dropdown values 10 years in future from current year.

Initial Title
Credit card Year dropdown

Initial Tags
php, dropdown, date

Initial Language
PHP