Ha! Tapatalk doesn't support bb code sorry!
---------- Post added at 01:00 PM ---------- Previous post was at 12:55 PM ----------
[/COLOR]<!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=Refresh CONTENT="3; URL=http://www.iowbonsai.org.uk/">
<title>sending</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
background-image: url(
http://www.iowbonsai.org.uk/res/images/bosaibg.png);
background-position:bottom right;
background-repeat:no-repeat;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 24px;
}
html,body,#wrapper{
height:100%;
margin:0;
padding:0;
border:none;
text-align:center
}
</style>
</head>
<body>
<?php
if(isset($_POST['name']) && isset($_POST['email']) && isset($_POST['service']) && isset($_POST['message']))
{
$to = "islandphil@live.co.uk";
$subject = "Website Message";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$service = $_POST['service'];
$message = $_POST['message'];
$headers = "MIME-Version: 1.0\n";
$body = "From: " . $name_field . "\n E-Mail: " . $email_field . "\n FAO: " . $service . "\n Additional Info:\n" . $message;
$body = wordwrap($body, 70);
if(mail($to, $subject, $body, $headers))
{
echo "Data has been submitted, Please Wait";
}
else
{
echo "Mail Failed. Contact Webmaster directly on
------PrinceSparkle@gmail.com-------";
}
}
else
{
echo "Oops, please try again later.";
}
?>
</body>
</html>