</form>
<font size="-7" face="Arial, Helvetica, sans-serif">Powered by <a href="http://www.thattechplace.com">ThatTechPlace</a><br>
Do not remove this copyright without my permission.
</font>
</body>
</html>
Ok, now here is the actual form. Put this before any HTML.
Code:
<?PHP
//**************************************************
//*****Script By Colton Wills of ThatTechPlace******
//*****Please Do not edit without my permission*****
//**************************************************
//Configure these to your settings.
$to = "ADD YOUR EMAIL HERE"; //Thats obvious
$subject = "Results from your Request Info form"; //Add your subject
$headers = "From: Form Mailer"; //Add your headers
$forward = 0; // Auto-Responder, Configurable at the main bottom. 0 = no, 1 = yes
$location = ""; //Dont configure
$date = date ("l, F jS, Y"); //PHP Time-Date format Dont configure
$time = date ("h:i A");**//Dont configure
// DONT CONFIGURE BELOW THIS LINE
$msg = "Below is the result of your feedback form. It was submitted on $date at $time.\n\n";
mail($to, $subject, $msg, $headers);
if ($forward == 1) {
****header ("Location:$location");
}
else {
****echo "Thank your for submitting this form. We will get back to you A.S.A.P"; //Auto-Reply
}
//Script by Colton Wills of ThatTechPlace
?>
10-16-2006, 07:50 PM
Toyoshima
I'm new to Php Scripting, been doing Html for a few months.
but ill try this one tomorrow when i wake up :D