Jump to content

PHP Conatct form not working in only IE


crazy_clairey

Recommended Posts

Hi there,

 

I have created a contact form for a website. It will send the mail no problem in Firefox and Safari. However, it will not send in IE. The url should go to the contactthanks.html page but instead it goes to the www.mysite.com/mailer.php page.

 

Can anyone help me? I can't seem to find an answer anywere online, but then I'm not sure what I'm doing wrong! My code is below. Thanks so much in advance for any help! :)

 

Here is my PHP:

 

[*]<?php

if(isset($_POST['submit'])) {

 

$from = 'My Site';

$to = "me@mysite.com";

$subject = "Contact Form";

$name_field = $_POST['name'];

$email_field = $_POST['email'];

$message = $_POST['message'];

 

$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";

 

mail($to, $subject, $body);

header( "Location: http://www.mysite.com/contactthanks.html\");

 

 

} else {

 

echo "thankyou!";

 

}

?>

 

 

Here is my HTML:

 

[*]

 

Name

 

 

 

Email Address

 

 

Message

 

 

 

 

:) Thankyou!

Link to comment
Share on other sites

As a matter of interest, would the header code work if it wasn't an absolute url; but a variable; in other words like:-

header( "Location: $contactthanks");

 

where there is a variable

$contactthanks = 'contactthanks.html' ;

 

because that's what I do and my forms work in IE.

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