Jump to content

jennsite

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jennsite's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. "No input file specified." is what I get when I click on my send button on my forms page. It's a simple e-mail form done in Dreamweaver MX. Four fields, all labeled. I chose 'Post' on the form options. I inserted this code: <input name="Submit" type="submit" class="style2" id="Submit" value="Send" onClick="POST"/> for the target, I have contactform.php. The php file is as follows: <?PHP $name = $_POST["name"]; $company = $_POST["company"]; $email = $_POST["email"]; $message = $_POST["message"]; $to = "name@geary.k12.ok.us"; $msg = "$name\n\n"; $msg .= "$message\n\n"; mail($to, $subject, $msg, "From: Website\nReply-To: $email\n"); ?> I've done a successful variation of this with Flash and it works great. I haven't done it yet with Dreamweaver and was sort of cobbling together things form the flash way and things from a dreamweaver book. I know I've botched it royally, but don't know how. Can anybody help? The page is http://www.geary.k12.ok.us/clients/contact.html 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.