I know this is probably one of the simplest questions. But I've looked and looked and apparently I don't know what terms I'm supposed to be looking for.
Plus, it's late and I'm a bit tired.
Please be patient with me.
print_r($my_array); // returns:
Array
(
[11] => For 11/04/2007
[17] => *data*
[21] => *data*
[34] => *data*
[38] => *data*
[53] =>
)
I want to change the keys from their current values to a simple 0 - 5, in this case.
How do I do this?
Thank you.