I was wondering if there was a way to add to the bottom of an array?
I would like to change the order with out using array_reverse. I want all new elements to be $a[0]. Can this be done?
Thanks,
timgerr
-How important does a person have to be before they are considered assassinated instead of just murdered?
So there you go! You're the retarded offspring of five monkeys having butt sex with a fish-squirrel! Congratulations!
Code:
$a = array();
$a[] = 'timmm';
$a[] = 'Tim';
$a[] = 'tom';
$a[] = 'Tom';
print_r($a);
Array ( [0] => timmm [1] => Tim [2] => tom [3] => Tom )
Thanks,
timgerr
-How important does a person have to be before they are considered assassinated instead of just murdered?
So there you go! You're the retarded offspring of five monkeys having butt sex with a fish-squirrel! Congratulations!