Jump to content

Yila

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Yila's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, I have the following code: [code]<form action="send.php"> <b>Full Name:</b><br> <input type="text" name="name" size="25" value=""> <br><br>      <b>Email Address:</b><br> <input type="text" name="email" size="25" value=""> <br><br> <b>Subject:</b><br> <input type="text" name="subject" size="35" value=""> <br><br> <b>Message:</b><br> <textarea name="message" cols="35" rows="6"></textarea> <br><br> <input type="submit" /> </form>[/code] Send.php: [code]<?php $name = $HTTP_POST_VARS['name']; $email = 'From: '.$HTTP_POST_VARS['email']; $subject = $HTTP_POST_VARS['subject']; $message = $HTTP_POST_VARS['message']; $to = 'jibberish@you.com'; $body = 'Name: '.$name.'\n' .'E-Mail Address: '.$email.'\n' .'Message: \n \n'.$message; mail($to, $subject, $body, $email); ?> [/code] This is the email I get it: [!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]Name: \nE-Mail Address: From: \nMessage: \n \n [/quote] Whats wrong? Thanks. :)
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.