I would greatly appreciate some help. I am using php into my flash page to send email. the code is:
<?
$subject="from".$_GET['your_name'];
$headers= "From:".$_GET['your_email']."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail($_GET['ssphoenix@comcast.net'], $subject, );
<html>
<head>
<title>Contact letter</title>
</head>
<body>
<br>
".$_GET['message']."
</body>
</html>" , $headers);
echo ("Your message was successfully sent!");
?>
<script>
resizeTo(300, 300)
//window.close()
</script>
it doesn't work and not sure why. but one issue i see is in the address browser (when I press the submit button), the code contains %30 and %40 characters between the information that suppose to show. i.e.
I would greatly appreciate if anyone can help.
thanks in advance.
<?
$subject="from".$_GET['your_name'];
$headers= "From:".$_GET['your_email']."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail($_GET['ssphoenix@comcast.net'], $subject, );
<html>
<head>
<title>Contact letter</title>
</head>
<body>
<br>
".$_GET['message']."
</body>
</html>" , $headers);
echo ("Your message was successfully sent!");
?>
<script>
resizeTo(300, 300)
//window.close()
</script>
it doesn't work and not sure why. but one issue i see is in the address browser (when I press the submit button), the code contains %30 and %40 characters between the information that suppose to show. i.e.
I would greatly appreciate if anyone can help.
thanks in advance.