GaryH wrote:
> 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?

But there *IS* a space between them.  You put a space after $fusername in
your output.

Perhaps you want vertical space.

Perhaps you event want vertical space that a BROWSER will interpret as
vertical space.

Here are a couple options:

echo "$fusername<BR>\n$lusername";
echo "<P>$fusername</P>\n<P>$lusername</P>\n";

-- 
Like Music?
http://l-i-e.com/artists.htm

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

Reply via email to