"Marcus James Christian" <[EMAIL PROTECTED]> wrote:
> How do you call for a space in an email put out by mail();  ?  Similar
> to the way we call \n newlines with backslash n??

Within an email create a space by typing " " or ' '.  If you want 10 spaces
do str_repeat( ' ', 10 ).  If you wanted to create a space within HTML I'd
suggest using "&#160;" (some people prefer "&nbsp;"), but if you do that
within the body of a text email it should display the actual characters, not
the text, so that won't get you the desired behavior.

HTH,

--
Steve Werby
President, Befriend Internet Services LLC
http://www.befriend.com/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to