-
Notifications
You must be signed in to change notification settings - Fork 0
/
comment.php
66 lines (55 loc) · 2.25 KB
/
comment.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>
<meta charset="utf-8">
<?php
require_once ("blocks/database.php");
if(isset($_POST['author'])){ $author=$_POST['author']; }
if(isset($_POST['text'])){ $text=$_POST['text']; }
if(isset($_POST['pr'])){ $pr=$_POST['pr']; }
if(isset($_POST['sub_com'])){ $sub_com=$_POST['sub_com']; }
if(isset($_POST['id'])){ $id=$_POST['id']; }
if (isset($sub_com))
{
if(isset($author)) { trim($author); }
else { $author=""; }
if (isset($text)) { trim($text); }
else { $text=""; }
if ( empty($author) or empty($text))
{
exit ("<p>Вы ввели не всю информацию. Пожалуйста, вернитесь назад и заполните все поля. <br> <input name='back' type='button' value='Вернуться назад' onclick='javascript:self.back();'></p>");
}
$author = stripslashes($author);
$text = stripslashes($text);
$author = htmlspecialchars($author);
$text = htmlspecialchars($text);
//echo $author;
//echo $text;
$result = mysql_query("select res from sp_comments_check where id=1",$db);
$myrow = mysql_fetch_array($result);
//echo $myrow['res'];
//echo "<br>".$pr;
if ($pr == $myrow['res'])
{
$date = date("Y-m-d");
$result2 = mysql_query("INSERT INTO sp_comments (post,author,text,date) VALUES ('$id','$author','$text','$date')",$db);
}
else
{
exit ("<p>Вы ввели неверное число при вычислении. Пожалуйста, вернитесь назад и введите еще раз правильный результат. <br> <input name='back' type='button' value='Вернуться назад' onclick='javascript:self.back();'></p>");
}
$address = "pyatneco@gmail.com";
$subject = "Появился новый комментарий на pyatneco.com";
$result3 = mysql_query("select title from sp_articles where id='$id'",$db);
$myrow3 = mysql_fetch_array($result3);
$message3 = "Появился новый комментарий в статье - ".$myrow3['title']."\n
Комментарий добавил(а): ".$author."\n
Текст комментария:".$text."\n";
mail($address,$subject,$message3,"Content-type:text/plain;Charset=utf8\r\n");
echo "<head><meta http-equiv='Refresh' content='0; URL=view_article.php?id=$id'></head>";
exit;
}
else
{
echo "Доступ напрямую запрещен";
}
?>
<html>