i need to remove elements in array which are empty.
this code works but is it ok to do it like this?

code:
if(in_array("", $people)) unset($people[array_search("", $people)])


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to