+44 7881601035 Skype: dangibas

HYGEN Blog

Web Design • Web Development • Project Management • Travel

HYGEN Blog HomeHome » Generate a drop down select box for year selection in Yii (PHP)

Dan Gibas

Dan Gibas, Director, HYGEN HYGEN Web Design
A British expat web monkey living in Malaysia. Hire me!

Generate a drop down select box for year selection in Yii (PHP)

November 3rd, 2010 | by admin |

You can use this PHP code with or without the Yii framework to generate a select box of years. It’s useful for date of birth etc and especially brilliant for sites with minimum age requirements. The code only outputs valid years of birth for over 18′s only.

$yearNow = date("Y");
$yearFrom = $yearNow - 100;
$yearTo = $yearNow - 18;
$arrYears = array();
 
		 foreach (range($yearFrom, $yearTo) as $number) {
		 $arrYears[$number] = $number; 
		 }
 
$arrYears = array_reverse($arrYears, true);
 
echo $form->dropDownList($model,'dateOfBirthYear',$arrYears);

If you use the above code without the Yii PHP framework then omit the echo line and output the array in your form manually :)

7 Responses to “Generate a drop down select box for year selection in Yii (PHP)”

  1. 7
    Ankit Says:

    Thanks…it’s greats…

  2. 6
    admin Says:

    Thanks Manuel,

    Yes if you can skip the array_reverse then it will increase performance a little bit and save some code.

    Dan

  3. 5
    manuelpedrera Says:

    Nice function, saved me some time ;)

    By the way, if you change the order of parameters in range you can skip the array_reverse call later.

  4. 4
    admin Says:

    Cool :)

  5. 3
    Sum-Wai Low Says:

    have been using it for six months, one commercial project coming up!

  6. 2
    admin Says:

    Thanks Sum-Wai!

    I just took a look at your blog… good stuff too! I haven’t written much about Yii yet – just been using it about a month. How long have you used Yii? Any commercial projects?

  7. 1
    Sum-Wai Low Says:

    Found your blog when I search for using the keyword “Yii Framework Malaysia”, nice blog, keep it up :)

Leave a Reply

Blogging Links

Blog Top List Blog Top List Blog Rankings Blogarama Web Design Blogs - BlogCatalog Blog Directory Web design blogs
BlogMalaysia.com Hygen Web Design at Blogged expat Kuala Lumpur

Games