aboutsummaryrefslogtreecommitdiff
path: root/edit.php
diff options
context:
space:
mode:
Diffstat (limited to 'edit.php')
-rw-r--r--edit.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/edit.php b/edit.php
new file mode 100644
index 0000000..7eba339
--- /dev/null
+++ b/edit.php
@@ -0,0 +1,33 @@
+<?php
+require 'config.php';
+require_once(TEMPLATES_PATH . "/header.php");
+require_once(TEMPLATES_PATH . "/panel.php");
+require_once(LIBRARY_PATH . "/functions.php");
+
+if(!isset($_GET['id']) || $_GET['id'] == "") {
+ echo "<div id='error'>No bug selected, redirecting to index...</div>";
+ header('Refresh: 2; URL=index.php');
+
+} else if(!isset($_SESSION['user_id']) || $_SESSION['user_id'] == "") {
+ echo "<div id='error'>Not logged in, redirecting to index...</div>";
+ header('Refresh: 2; URL=index.php');
+
+} else {
+ $conn = new PDO($config['db']['dsn'], $config['db']['username'], $config['db']['password']);
+
+ $query = "SELECT title, description, users.username AS submitter FROM bugs JOIN users ON bugs.author = users.id WHERE bugs.id=$_GET[id]";
+ $result = $conn->query($query)->fetch();
+?>
+
+<form action="update.php?id=<?php echo $_GET['id']; ?>" method="post">
+<p>Title: <input name="title" type="text" value="<?php echo $result['title']; ?>"></p>
+<p>Submitted by: <?php echo $result['submitter']; ?></p>
+<p>Description: <br><textarea name="description" rows=25 cols=80><?php echo $result['description']; ?></textarea></p>
+<input type="submit" value="update" >
+</form>
+
+<?php
+}
+
+require_once(TEMPLATES_PATH . "/footer.php");
+?>