try
<?
$string="Randy Tas";
$bits=explode(" ", $string);
for ( $loop=0; $loop<count($bits); $loop++ )
{
echo $bits[$loop]."\n<BR>\n";
}
?>
or
<?
$string="Randy Tas";
$string=ereg_replace(" ", "\n", $string);
echo nl2br($string);
?>
The second way is easy to write but if you want to process each part of the name the first is better.
Mark.