Jump to content

toshka

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

toshka's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello everyone! Stuck with a script... again. This script is linked to a flash contact form which can be viewed at www.thegladman.com <?php $name = $_REQUEST["name"]; $subject = $_REQUEST["subject"]; $message = $_REQUEST["message"]; $sender = $_REQUEST["sender"]; $full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . $message; $message= $full_message; $name = stripslashes($name); $message = stripslashes($message); $subject = stripslashes($subject); $sender = stripslashes($sender); $subject = "The Gladman Contact - ". $subject; if(isset($name) and isset($message) and isset($subject) and isset($sender)){ mail("sales@thegladman.com", $name, $subject, $message, "From: $sender"); } ?> Can anyone see any errors in my script? For some reason the email won't go through. Peace, Ant..
  2. Ahhh I see... Well I overlooked the script again and found my mistake. It wasn't in the php scripting but the html.. 2 words had to be swapped around and it starts working. AHH... Very frustrating. Thanks anyways.
  3. I have made a contact form in html. When submit is clicked it triggers the process.php file which sends the email. At the moment though, it does send the email but with no form values. Any ideas?? Thanks. The files are below in the contact.zip file. [a href=\"http://www.ripon.syxe.com/contact.zip\" target=\"_blank\"]contact.zip[/a]
×
×
  • 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.