Get exclusive CAP network offers from top brands

View CAP Offers

Reply To: Contact us

[bsa_pro_ad_space id=2]
#756666
Anonymous
Inactive

Put this form in your html

Name:
Email address:
Information

Then copy this file to our server. Change the email you want the info to go to. Follow Directions

/*
CHFEEDBACK.PHP Feedback Form PHP Script Ver 2.01.
Generated by thesitewizard.com’s Feedback Form Wizard.
Copyright 2000-2003 by Christopher Heng. All rights reserved.
thesitewizard and thefreecountry are trademarks of Christopher Heng.

$Id: phpscript.txt 1.1 2003/04/17 11:53:45 chris Exp $

Get the latest version, free, from:
http://www.thesitewizard.com/wizards/feedbackform.shtml

You can contact me at:
http://www.thesitewizard.com/feedback.php

LICENCE TERMS

1. You may use this script on your website, with or
without modifications, free of charge.

2. You may NOT distribute or republish this script,
whether modified or not. The script is meant for your
personal use on your website, and can only be
distributed by the author, Christopher Heng.

3. THE SCRIPT AND ITS DOCUMENTATION ARE PROVIDED
“AS IS”, WITHOUT WARRANTY OF ANY KIND, NOT EVEN THE
IMPLIED WARRANTY OF MECHANTABILITY OR FITNESS FOR A
PARTICULAR PURPOSE. YOU AGREE TO BEAR ALL RISKS AND
LIABILITIES ARISING FROM THE USE OF THE SCRIPT,
ITS DOCUMENTATION AND THE INFORMATION PROVIDED BY THE
SCRIPTS AND THE DOCUMENTATION.

If you cannot agree to any of the above conditions, you
may not use the script.

Although it is NOT required, I would be most grateful
if you could also link to thesitewizard.com at:

http://www.thesitewizard.com/

*/

//


CONFIGURABLE SECTION



// $mailto – set to the email address you want the form
// sent to, eg
//$mailto = “[email protected]” ;

$mailto = ‘[email protected]’ ;

// $subject – set to the Subject line of the email, eg
//$subject = “Feedback Form” ;

$subject = “Contact” ;

// the pages to be displayed, eg
//$formurl = “http://www.example.com/feedback.html” ;
//$errorurl = “http://www.example.com/error.html” ;
//$thankyouurl = “http://www.example.com/thankyou.html” ;

$formurl = “http://www.xxx.com/contact.html” ;
$errorurl = “http://www.xxx.com/error.html” ;
$thankyouurl = “http://www.xxx.com/thanks.html” ;

//


END OF CONFIGURABLE SECTION



$name = $_POST ;
$email = $_POST ;
$comments = $_POST ;
$http_referrer = getenv( “HTTP_REFERER” );

if (!isset($_POST)) {
header( “Location: $formurl” );
exit ;
}
if (empty($name) || empty($email) || empty($comments)) {
header( “Location: $errorurl” );
exit ;
}

$messageproper =

“This message was sent from:n” .
“$http_referrern” .


COMMENTS


nn” .
$comments .
“nn


n” ;

mail($mailto, $subject, $messageproper, “From: “$name” <$email>nReply-To: “$name” <$email>nX-Mailer: chfeedback.php 2.01″ );
header( “Location: $thankyouurl” );
exit ;

?>

I have used this for years and the bots can not get your email address.