Forum Moderators: coopster
$columns = Array
(
[82] => Monday
[91] => Wednesday
[88] => Friday
);
i want to be able to dynamically remove values from $columns if it is Wednesday and then have a new array set called $columns_filtered with the Wednesday value deleted
can anyone please tell me how i can do this?
thanks
Splice actually removes the elements, so this is probably the one you want.