Below is  a simple php file that recieves input from a form html file.  The
php file outputs the first and last name, but their is no space between the
names.  Does anyone know how I can get a space between name in the php file?
TIA,
Gary
<html>
<head>
<title>Hi User</title>
</head>
<body>

<h3>PHP program that receives a value from "whatsName"</h3>

<?
  print "$fusername ";
  print "$lusername";
?>

</body>
</html>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to