Jump to content

aquestion

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

aquestion's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Ok So this can be done by sending a html based form to a php script on another server. But do you have any script examples i.e. would this work as the php script ? <? if ($REQUEST_METHOD == "POST") {   // Just to be safe, I strip out HTML tags  $name = strip_tags($name);  $email = strip_tags($email);  $feedback = strip_tags($feedback);    // set the variables  $sendto = "$me@mysite.com";  $subject = "Sending Email Feedback From My Website";  $message = "$name, $email\n\n$feedback";    // send the email  mail($sendto, $subject, $message);  }  ?>
×
×
  • 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.