Hi!
How do I remove elements from an array ?
The only thing I found in the manual was a set of functions (PHP4 specific of course) that would do the trick but damn, isn't there another way to do it?
Something like:
Remove( 0, $myArray );
or:
$myArray[0] = null;
Funny though, that after two years of daily php-programming I've never removed elements from an array, just added new and searched for old 😉
/ Ronnie