feedback.htm <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sendmail</title>
</head>

<body>
Thanks <?php print ($_REQUEST["name"]); ?>. Your paintballin adventure has been scheduled.

<?php


$pname 
= ($_REQUEST["pname"]);
$phone = ($_REQUEST["phone"]);
$fax = ($_REQUEST["fax"]);
$name = ($_REQUEST["name"]);
$address = ($_REQUEST["adress"]);
$city = ($_REQUEST["city"]);
$state = ($_REQUEST["state"]);
$zip = ($_REQUEST["zip"]);
$email = ($_REQUEST["email"]);
$players = ($_REQUEST["players"]);
$guns = ($_REQUEST["guns"]);
$splayers = ($_REQUEST["splayers"]);
$instrcts = ($_REQUEST["instrcts"]);

$to ="mrchagoyan@hotmail.com";
$subject ="Paintball Form";

$all "The information was submitted from the party form:
Party name: "
.$pname."\n ".
"Phone: ".$phone."\n ".
"Fax: ".$fax."\n ".
"Name: ".$name."\n ".
"Address: ".$pname."\n ".
"City: ".$city."\n ".
"State: ".$state."\n ".
"Zip: ".$zip."\n ".
"Email: ".$email."\n ".
"Party Size: ".$players."\n ".
"Guns Needed: ".$guns."\n ".
"Self-Equiped Players: ".$splayers."\n ".
"Special Instructions: ".$instrcts."\n ";

if (
mail($to$subject$all))
{
$allhtml "<br><br>The followin information was submited:
Party name: "
.$pname."<br> ".
"Phone: ".$phone."<br> ".
"Fax: ".$fax."<br>".
"Name: ".$name."<br> ".
"Address: ".$pname."<br>".
"City: ".$city."<br> ".
"State: ".$state."<br> ".
"Zip: ".$zip."<br>".
"Email: ".$email."<br> ".
"Party Size: ".$players."<br>".
"Guns Needed: ".$guns."<br> ".
"Self-Equiped Players: ".$splayers."<br>".
"Special Instructions:".$instrcts."<br>";

echo 
$allhtml;
}
else
{
print (
"WARNING WARNING WARNING - Please Try Again");
}
?>
</body>
</html>