I want to know how many items has an array:
$array = explode (" ", $string);
len($array)?????
thanks
No, not len. count($array) ...it should be.
Thanks! Tobias