-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnew_topic.php
69 lines (58 loc) · 1.96 KB
/
new_topic.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
<?php
session_start();
require_once("connect.php");
if (!isset($_SESSION["username"])) {
header("Location: login.php");
exit();
}
// Check if the user is an admin
$is_admin = isset($_SESSION['role']) && $_SESSION['role'] === 'admin';
if (isset($_POST["submit"]) && $is_admin) { // Only admins can create topics
$title = $_POST["title"];
$user_id = $_SESSION["user_id"];
$content = $_SESSION["content"];
// Check only for the presence of $title
if ($title) {
$query = "INSERT INTO topics (title, user_id, content) VALUES (:title, :user_id, :content)";
$stmt = $pdo->prepare($query);
$stmt->bindParam(':title', $title);
$stmt->bindParam(':user_id', $user_id);
$stmt->bindParam(':content', $content);
if ($stmt->execute()) {
header("Location: index.php");
exit();
} else {
echo "Error creating the module.";
}
} else {
echo "Please fill in the title field.";
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Create New Module</title>
<?php require("header.php"); ?>
</head>
<body>
<?php if ($is_admin): ?> <!-- Check if the user is an admin -->
<h1>Create New Module</h1>
<div class="container">
<form method="post" action="">
<div class="input-group">
<label for="title">Title:</label>
<input type="text" name="title" required><br>
</div>
<div class="input-group">
<label for="content">Content:</label><br>
<textarea type="text" name="content" rows="4" required></textarea>
</div>
<input type="submit" name="submit" class="btn" value="Create Topic">
</form>
<?php else: ?>
<h1>Only admin can create topics.</h1>
<?php endif; ?>
</div>
</body>
</html>