sir
i am a newbie in php. how can i put this array in for loop to generate numbers 1, 2, 3, 4.
now i want to declare like this. but if i have 100 numbers it is very diffcult. please tell me

how can i use variable in the place of 1, 2, 3, 4, 5?


$days = array(
1=>array('testing','linked-day'),
2=>array('testing','linked-day'),
3=>array('testing','linked-day'),
4=>array('testing','linked-day'),
5=>array('testing','linked-day'),
);

ram