line 41:
mail($address,$subject,$message,"Content-type:text/plain; Charset=windows-1251\r\n");
mail($address,$subject,$message,"Content-type:text/plain; Charset=windows-1251\r\n");
http://translate.google.ru/?hl=ru&tab=wT#en|ru|%22sendmail_from%22%20not%20set%20in%20php.ini%20or%20custom%20%22From%3A%22%20header%20missing%20in
Цитата (Xes @ 1.12.2011 - 07:16) |
http://translate.google.ru/?hl=ru&tab=wT#en|ru|%22sendmail_from%22%20not%20set%20in%20php.ini%20or%20custom%20%22From%3A%22%20header%20missing%20in ИЗ сего, я могу предположить mail хочет видеть заголовок From: |
if ($pr == $myrow["sum"])
{
$date = date("Y-m-d");
$result2 = mysql_query ("INSERT INTO comments (post,author,text,date) VALUES ('$id','$author','$text','$date')",$db);
$address = "support@phpblog.ru";
$subject = "Новый коментарий на блоги";
$result3 = mysql_query ("SELECT title FROM data WHERE id='$id'",$db);
$myrow3 = mysql_fetch_array($result3);
$post_title = $myrow3["title"];
$message = "Появился комментарий к заметки - ".$post_title."\n Комментарий добавил(а): ".$author."\n Текст комментария: ".$text."\n Ссылка на заметку: http://localhost/phpblog/view_post.php?id=".$id."";
mail($address,$subject,$message,"Content-type:text/plain; Charset=windows-1251\r\n");
}
else
{
exit ("<p>Вы ввели неверную сумму с картинки на предыдущей странице, вернитесь назад и введите сумму заново. <br><input name='back' type='button' value='Вернуться назад' onclick='javascript:history.back();'></p>");
}