Jump to content

hmm e-mail form..i cant get it to work..what am i doing wrong?


linden.940

Recommended Posts

ok i keep on trying to test this but its not working..i tryed alot of things..i am new to php and trying to learn how to use php...can someone plez tell me what i did wrong?

 

The form html side

 

Your Name:

Your Phone:

Your E-mail:

Code:

What you think about me:

 

the php side

 

<?

$nameone = $_REQUEST['nameone'];

$phone_no = $_REQUEST['phone_no'];

$email = $_REQUEST['email'];

$code = $_REQUEST['code'];

$text1 = $_REQUEST['text1'];

 

$send_email = "Name {$nameone}

Phone number {$phone_no}

email {$email}

code {$code}

text1 {$text1};

mail( 'linden.940@gmail.com', 'Feedback Form Results"', $send_email);

 

?>

Link to comment
Share on other sites

Hmm ... try to echo on the screen

 

Instead of :

 

mail( 'linden.940@gmail.com', 'Feedback Form Results"', $send_email);

 

try

 

echo "$send_email";

 

Do you see all the information?

 

 

Something wrong with your php syntax, can you re-check it again?

mail( 'linden.940@gmail.com', 'Feedback Form Results"', $send_email);

Link to comment
Share on other sites

i found out what i did wrong...a noobie mess up i did not put " at the end of {text1} i had {text1}; not {text1}";

 

<?

$nameone = $_REQUEST['nameone'];

$phone_no = $_REQUEST['phone_no'];

$email = $_REQUEST['email'];

$code = $_REQUEST['code'];

$text1 = $_REQUEST['text1'];

 

$send_email = "Name {$nameone}

Phone number {$phone_no}

email {$email}

code {$code}

text1 {$text1};

mail( 'linden.940@gmail.com', 'Feedback Form Results"', $send_email);

 

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...