right this is wrecking my inexperienced head....
flash contact form for
www.lovoncon.com
contact.php reads:
<?php
$your_name=$_GET;
$your_phone=$_GET;
$your_email=$_GET;
$your_message=$_GET;
$recipient_email = "declanor@gmail.com";
$headers = "From" . $your_name . "<" . $your_email . ">\n";
$headers .='content-type: text/html; charset=iso-8859-1';
$content ="<html><title>contact letter</head><br>";
$content .="name: <b>" . $your_name . "/b><br>";
$content .="phone: <b>" . $your_phone . "/b><br>";
$content .="e-mail: <b>" . $your_email . "/b><br><hr><br>";
$content .= $your_message;
$content .= "<br></body></html>";
mail($recipient_email,$subject,$content,$headers);
?>
<html>
<body bgcolor="#282e2c">
<div align="center" style="margin-top:60px;color:#FFFFFF;font-family:tahoma;font-weight:bold">
Your Message Was Sent, Thank You.
</div>
</body>
<html>
<script>
resizeTo(300, 300);
// window.close()
</script>
summit buttom on site is:
on (rollOver) {
gotoAndPlay("s1");
}
on (releaseOutside, rollOut) {
gotoAndPlay("s2");
}
on (release) {
_parent.getURL("contact.php","_blank_","GET");
_parent.your_name="Your Name:";
_parent.your_phone="Your Phone:";
_parent.your_email="Your E-Mail:";
_parent.your_message="Message:";
}
Where am i going wroung???????????/
Please help.............