// start the session
session_start();
header("Cache-control: private"); //IE 6 Fix
$title="
Submit Winery ";
?>
echo "$title"; ?>
include("/home/cursinu/tastingjournals.com/data/images/header/header.php"); ?>
$PHP_SELF = $_SERVER['PHP_SELF'];
if (!($_POST)) {
$form="
Thank You for submitting a new Wine Bar to TastingJournals.com Please enter the winery information below:
";
echo $form;
}
else
{
$name = $_POST['name'] ;
$email = $_POST['email'] ;
$website = $_POST['website'] ;
$message = $_POST['description'] ;
$email_message= "Winery: ".$name. "\n
Winery Website: ".$website. "\n
Winery Description: ".$message. "\n
User Contact Email: ".$email;
mail("info@tastingjournals.com", "Submit Wine Bar", $email_message, "From: info@tastingjournals.com" );
$thankyou_message="
Thank you for submitting a new Wine Bar to TastingJournals.com. Your message was sent succesfully. We are committed to making your tasting experience the highest quality web experience possible.
We appreciate your feedback and comments, and we will get back to you shortly.
Share a glass with us...
Click here to continue
";
echo $thankyou_message;
}
?>
include("/home/cursinu/tastingjournals.com/data/images/footer/footer.php"); ?>