array_splitter.php
<?
function array_splitter($delimiter, $string)
{
$array = explode($delimiter, $string);
#returns the number of elements in the array
$size=count($array);
for ($i=0; $i <= $size; $i++)
echo $array[$i] . "<BR>";
}
#Laurent Gottardo, 15.9.04
?>