Jump to content

dorfhima

New Members
  • Posts

    4
  • Joined

  • Last visited

dorfhima's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Yes, I run the site on my computer using IIS
  2. How do I enable it? (my website isnt published)
  3. I am getting this error everytime i use my php form HTTP Error 405.0 - Method Not Allowed PHP CODE: <?php //if "email" variable is filled out, send email if (isset($_REQUEST['email'])) { //Email information $admin_email = "someone@example.com"; $email = $_REQUEST['email']; $subject = $_REQUEST['subject']; $comment = $_REQUEST['comment']; //send email mail($admin_email, "$subject", $comment, "From:" . $email); //Email response echo "Thank you for contacting us!"; } //if "email" variable is not filled out, display the form else { ?> <?php } ?>
×
×
  • 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.