How can I remove an element from an array using it's array id?
Searching helps, and the manual sure isn't useless either.
unset($aArray[$id]);
Oh, I browsed the array section in the manual before posting my question, but I only found a function that would remove duplicated elements in the array.
Didn't know I could unset an array member/element.
Thanks for your help.