I'm having the following array …
'type' => 'select',
'options' => array(
array('name' => '1980', 'value' => '1980'),
array('name' => '1981', 'value' => '1982'),
array('name' => '1983', 'value' => '1983'),
…
…
array('name' => '2011', 'value' => '2011'),
array('name' => '2012', 'value' => '2012'),
)
Any idea how to write that thing "dynamically" so that the options array is filled with the year numbers from 1980 till 2012 automatically?
'type' => 'select',
'options' => array(
// create array's from 1980 till date('Y') automatically
)
Right now I hardcoded all those lines and I guess this could be done a lot more efficiently and simpler.
Thank you in advance, Matt

