1,16 → 1,48 |
<?php |
|
function getParentID() |
{ |
if (isset($_GET['id'])) |
{ |
return $_GET['id']; |
} |
else |
{ |
return -1; |
} |
} |
|
require '../_taios.php'; |
|
$page = new Taios_Page('Blog Posts', '../'); |
$page->checkLoggedIn(); |
|
if (!$page->isUserGM($page->getLoggedInUser())) |
$page->redirect("index.php"); |
$error = ''; |
|
if (isset($_POST['title']) && isset($_POST['content']) && isset($_POST['catagory']) && isset($_POST['parentID'])) |
if (isset($_POST['post'])) |
{ |
$page->query('insert into BlogPosts VALUES(0, ' . $_POST['parentID'] . ', "' . $page->getLoggedInUser()->ID . '", "' . $_POST['title'] . '", "' . $_POST['content'] . '", NOW(), "' . $_POST['catagory'] . '", 0)'); |
$page->redirect('index.php'); |
$title = $_POST['title']; |
$content = $_POST['content']; |
$parentID = $_POST['parentID']; |
$category = $_POST['category']; |
|
if (empty($title)) |
{ |
$error = "No Title Specified"; |
} |
else if (empty($content)) |
{ |
$error = "No Content Specified"; |
} |
else if (empty($parentID)) |
{ |
$error = "No Parent ID Specified"; |
} |
else |
{ |
$page->query('INSERT INTO BlogPosts VALUES(0, ' . $parentID . ', "' . $page->getLoggedInUser()->ID . '", "' . $title . '", "' . $content . '", NOW(), "' . $category . '", 0)'); |
$page->redirect('index.php'); |
} |
} |
|
$page->drawHeader(); |
17,15 → 49,14 |
$page->drawBlogCategoriesMenu(); |
$page->drawMiddle(); |
|
if ($page->isUserGM($page->getLoggedInUser())) |
if (!empty($error)) |
{ |
write('<p class="bold"><a href="add-post.php">Add Post</a></p>'); |
write('<br />'); |
$page->drawError($error, false); |
} |
|
?> |
|
<form action="add-post.php" method="post"> |
<form action="add-post.php?id=<?php echo getParentID(); ?>" method="post"> |
<table> |
<tr> |
<td class="bold">Title: </td> |
33,15 → 64,17 |
</tr> |
<tr> |
<td class="bold">Content: </td> |
<td><textarea name="content" style="width: 523px; height: 543px">Content Here</textarea></td> |
<td><textarea name="content" style="width: 500px; height: 300px;"></textarea></td> |
</tr> |
<tr> |
<td class="bold">Catagory: </td> |
<td><input type="text" name="catagory" /></td> |
<td><input type="text" name="category" /></td> |
</tr> |
|
<input type="hidden" name="post" value="yes" /> |
|
<?php |
write('<input type="hidden" name="parentID" value="' . $_GET['id'] . '"/>'); |
write('<input type="hidden" name="parentID" value="' . getParentID() . '" />'); |
?> |
|
<tr> |