I want to create a dynamic array that will look like this, using years:
array(2012,2011,2010,2009,2008,2007,2006,2005)
Basically I have the starting year which is constant, 2005, and I want the array to dynamically change each year, adding the new year. Currently, I grab the current year via:
$this_year = date('Y');
Is there some easy way to generate the array using the two known years, the constant 2005 and the current year?
Thanks for taking a look.