-
Notifications
You must be signed in to change notification settings - Fork 13
/
post_news_action.php
65 lines (46 loc) · 1.47 KB
/
post_news_action.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
<?php
include "validate_admin.php";
include "connect.php";
include "header.php";
include "user_navbar.php";
include "admin_sidebar.php";
include "session_timeout.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="action_style.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<?php
$headline = mysqli_real_escape_string($conn, $_POST["headline"]);
$news_details = mysqli_real_escape_string($conn, $_POST["news_details"]);
$sql0 = "INSERT INTO news (title, created)
VALUES('$headline', NOW())";
$sql1 = "INSERT INTO news_body (body)
VALUES('$news_details')"; ?>
<?php
if (($conn->query($sql0) === TRUE) && ($conn->query($sql1) === TRUE)) { ?>
<p id="info">
<?php echo "News posted successfully !\n"; ?></p>
<?php
} else { ?>
<p id="info">
<?php
echo "Server Error !<br>";
echo "Error: " . $sql0 . "<br>" . $conn->error . "<br>";
echo "Error: " . $sql1 . "<br>" . $conn->error . "<br>"; ?></p>
<?php
}
$conn->close();
?>
</div>
<div class="flex-item">
<a href="post_news.php" class="button">Post Again</a>
</div>
</div>
</body>
</html>