Jump to content

Recommended Posts

I have a pretty straight forward contact form that should email to the specified email address, but when I fill out the form, and submit, it just takes me to a blank page on contact.php instead of echoing that my message has been sent....

 

contact.html

 

<html>

<head> <title>Contact Form</title></head>

<body>

<form method="post" action="contact.php">

Name:<input name="fullname" type="text">
<br /><br />
Email:<input name="email" type="text"><br />
<br />
Message: <br /><textarea rows="5" cols="50" name="
message">
Please type your message here!
</textarea>
<br/>
<br/>
<input type="submit" value="Submit">

</form>

</body>

</html>

 

 

contact.php

 

<?php

ini_set('display_errors','On'); 

// Grabing the info from the contact form

$name = $_POST['fullname']; 

$from = $_POST['email'];

$message = $_POST['message'];


// Email info and variables


$to = "[email protected]";

$subject = "Contact Form";

$body = "$message";

$headers = "From: $from" .

    "X-Mailer: php";

if (mail($to, $subject, $body, $headers)) {

  echo("<p>Message Sent!</p> <br /> <br /> Click <a href="#"> Here</a> to return to the main page.");

} else {

  echo("<p>Message delivery failed... Please hit back, and try again.</p>");
}
?>

 

Any suggestions?  :D :'(

 

-Thanks

Link to comment
https://forums.phpfreaks.com/topic/159923-solved-trouble-with-php-contact-form/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.