remove 1 value from array
Posted: Sun Dec 21, 2003 10:58 pm
Imagine this array:
Array
(
[0] => orange
[1] => banana
[2] => apple
[3] => raspberry
)
Is there an easy way to remove the banana value so it looks like this:
Array
(
[0] => orange
[1] => apple
[2] => raspberry
)
Thank you for any help.
Array
(
[0] => orange
[1] => banana
[2] => apple
[3] => raspberry
)
Is there an easy way to remove the banana value so it looks like this:
Array
(
[0] => orange
[1] => apple
[2] => raspberry
)
Thank you for any help.