-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
83 lines (75 loc) · 2.03 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
// Import util functions
require("util.php");
checkSession();
dbConnect();
// Set up feeds
$result = userFromID($id);
$primaryfeed = $result["primaryfeed"];
$secondaryfeed = $result["secondaryfeed"];
// Post status update if set
if (isset($_POST["statusUpdate"])) {
$statusUpdate = nl2br(htmlspecialchars($_POST["statusUpdate"]));
// Check if status update valid
if (!(empty($_POST["statusUpdate"]) || ctype_space($_POST["statusUpdate"]))) {
// Post status update
$stmt = $conn->prepare("INSERT INTO updates (status, posterid) VALUES (:statusUpdate, :id)");
$stmt->bindParam(":id", $id);
$stmt->bindParam(":statusUpdate", $statusUpdate);
$stmt->execute();
$postMessage = "<p id=\"label\">Status update successful.</p>";
} else {
setError("Please enter a valid status update.");
}
}
prg();
echoHeader(1);
?>
<div id="content">
<form id="updateStatus" method="post" action="#">
<?php
// Display error message if exists
if (empty($errorMessage)) {
if (!empty($postMessage)) {
echo($postMessage);
}
} else {
echo($errorMessage);
}
?>
<textarea id="statusText" name="statusUpdate" placeholder="Enter status update..."></textarea><br>
<input type="submit" name="postStatusUpdate" value="Post" />
</form>
<div id="primaryFeed">
<?php
// Display primary feed
switch($primaryfeed) {
case "news":
include_once("newsfeed.php");
break;
case "messages":
include_once("messagefeed.php");
break;
default:
// TODO set primary feed to news
}
?>
</div>
<div id="secondaryFeed">
<?php
// Display secondary feed
switch($secondaryfeed) {
case "news":
include_once("newsfeed.php");
break;
case "messages":
include_once("messagefeed.php");
break;
default:
// TODO set secondary feed to messages
}
?>
</div>
</div>
</body>
</html>