> On Mon, 18 Aug 2003 08:03:25 -0400, you wrote:
> 
> >How do I remove empty array values?

This will remove the empty values and re-index the array so there are no
"holes".

$new_array = array_values($old_array);

Kirk

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

Reply via email to