PHP Form Mail

This is a discussion on "PHP Form Mail" within the PHP Forum section. This forum, and the thread "PHP Form Mail are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 22nd, 2006, 20:09
Junior Member
Join Date: Jul 2006
Location: Maine
Posts: 49
Thanks: 0
Thanked 0 Times in 0 Posts
PHP Form Mail

The code below is the message part of the email. But when I look at the email, after Contact Form and Email Address, everything is double spaced and shifted to the right.

PHP: Select all

$body "Contact Form \nName: {$_POST['name']}\n

        Email Address: {$_POST['email']}\n
        Do They Own Land: {$_POST['land']}\n
        What Kind of Plan: {$_POST['plan']}\n
        Their Budget Is: {$_POST['budget']}\n
        Comments: {$_POST['comments']}\n"

Reply With Quote

  #2 (permalink)  
Old Sep 22nd, 2006, 21:28
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: PHP Form Mail

If this layout is exactly as in your code then that is exactly what will happen.

PHP is adding the newline/carriage returns and the tabs/spaces of your code to your $body variable.

PHP thinks that everything upto the ';' is part of the line of code.

If you want to write your code like this for clarity, then make each line a php line in its own right and build your $body content as you go. See example code:
Code: Select all
$body = 'first line of code';
$body .= 'second line of code';
...
and so on.
Reply With Quote
  #3 (permalink)  
Old Sep 22nd, 2006, 21:59
Junior Member
Join Date: Jul 2006
Location: Maine
Posts: 49
Thanks: 0
Thanked 0 Times in 0 Posts
Re: PHP Form Mail

Thanks Geoff,

That makes sense.
Reply With Quote
Reply

Tags
php, form, mail

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP Mail Form Synoptic PHP Forum 2 Jun 11th, 2008 21:16
Mail Form help! ClrWtrDsgnr PHP Forum 6 Sep 27th, 2007 21:22
Can someone help me with this e-mail form??? johnson8707 PHP Forum 4 Jul 4th, 2006 17:51
visitors name not displayed in mail after filling in mail form made on earth PHP Forum 7 Nov 16th, 2005 22:43
E-mail form ??????? pittypatter Web Page Design 3 Apr 11th, 2005 23:42


All times are GMT. The time now is 11:57.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43