Is there an easy way to remove empty values or "0" values from an array??
You can remove a value from an array by using "unset" e.g.:
unset($numeric_array[42]); // or unset($associative_array['sheep']);
Mark
RTFM [man]array_filter[/man]