Ok I have two vars $fName = "Peter"; $lName = "Smith";
i want to combine them to one varible $fullName;
so when i echo them ill get
echo $fullName;
Peter Smith
the problem is the space and ideas?
thanks
peter
Peter,
<?
$fName = "Peter"; $lName = "Smith"; $fullname = $fName . " " . $lName;
echo $fullname;
?>
This will work.
Regards
Mike www.digitalegg.net
Mike,
thanks i got it!!
appreciate the help!
pete