I'm not sure why i have this error, help :(
[PHP]<?php
@extract($_POST );
$name = stripslashes($n ame);
$email = stripslashes($e mail);
$message = stripslashes($m essage);
if (empty($name) || empty($email) || empty($message) )
{
header( "Expires: Mon, 20 Dec 1998 01:00:00 GMT" );
header( "Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );
?>
<html>
<head><title>Er ror</title></head>
<body>
<h1>Error</h1>
<p>
Oops, it appears you forgot to enter either your
name, email address, or your message. Please press the BACK
button in your browser and try again.
</p>
</body>
</html>
<?
}
else
{
mail(’myemail@g mail.com’, $message, "From: $name <$email>"); <--line 36
header("locatio n:hello.htm");
}
?>
[/PHP]
[PHP]<?php
@extract($_POST );
$name = stripslashes($n ame);
$email = stripslashes($e mail);
$message = stripslashes($m essage);
if (empty($name) || empty($email) || empty($message) )
{
header( "Expires: Mon, 20 Dec 1998 01:00:00 GMT" );
header( "Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );
?>
<html>
<head><title>Er ror</title></head>
<body>
<h1>Error</h1>
<p>
Oops, it appears you forgot to enter either your
name, email address, or your message. Please press the BACK
button in your browser and try again.
</p>
</body>
</html>
<?
}
else
{
mail(’myemail@g mail.com’, $message, "From: $name <$email>"); <--line 36
header("locatio n:hello.htm");
}
?>
[/PHP]
Comment