Hi,
Let's say I have the following array:
$myArray = array(array('1','2','3'), array('4','5','6'), array('7','8','9'),
array('10','11','12'));
How do I remove say the second element?
I have tried: $myArray = array_splice($myArray, 1, 1);
But this seems to remove the second element as well as all the following
elements and I am left with:
$myArray = array(array('1','2','3'));
when I really want:
$myArray = array(array('1','2','3'), array('7','8','9'),
array('10','11','12'));
Thanks,
Don
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php