такой пример не работает в localhost.
<?php
$to="yahoo.com";
if (!isset($_POST["send"]{
// no post data -> display form
?>
<form method="POST" action="<?=$_SERVER['PHP_SELF'];?>">
To: yahoo.com
From: <input type="text" name="sender">
Subject : <input type="text" name="subject">
Message :
<textarea name="message" rows="10" cols="60" lines="20"></textarea>
<input type="submit" name="send" value="Send">
</form>
<?
}else{
// found post data .. deal with it
$from=$_POST['sender'];
// send mail :
if (mail($to,$_POST['subject'],$_POST['message'],"From: $from\n"{
// display confirmation message if mail sent successfully
echo "Your mail was indeed sent to $to.
";
}else{
// sending failed, display error message
echo "Doh! Your mail could not be sent.
";
}
}
?>
Funtion mail; всегда получается значение false. Не скажите почему?
Hopka
такой пример не работает в localhost.<?php
$to="yahoo.com";
if (!isset($_POST["send"]{
// no post data -> display form
?>
<form method="POST" action="<?=$_SERVER['PHP_SELF'];?>">
To: yahoo.com
From: <input type="text" name="sender">
Subject : <input type="text" name="subject">
Message :
<textarea name="message" rows="10" cols="60" lines="20"></textarea>
<input type="submit" name="send" value="Send">
</form>
<?
}else{
// found post data .. deal with it
$from=$_POST['sender'];
// send mail :
if (mail($to,$_POST['subject'],$_POST['message'],"From: $from\n"{
// display confirmation message if mail sent successfully
echo "Your mail was indeed sent to $to.
";
}else{
// sending failed, display error message
echo "Doh! Your mail could not be sent.
";
}
}
?>
Funtion mail; всегда получается значение false. Не скажите почему?