say i have an array
[code=php]array(3,4,5,6,7);[/code]
how can i remove the element at position 3 in the array.
Consider [man]unset/man or [man]array_splice/man.