Simple question; How can i delete the right Array from my foreach() ?
foreach ( $items as $e):
if ( $e['seat'] == $users[$clientID]['seat']):
//It's done, delete it.
unset ( $e );
endif;
endforeach;
unset($e) doesn't seem to work properly. What is the right solution to delete the right array from the right index?