Subversion Repositories taios

Rev

Rev 122 | Rev 124 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

require '../_taios.php';

$page = new Taios_Page('Blog Posts', '../');

$error = '';

$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();
$page->drawBlogCategoriesMenu();
$page->drawMiddle();

?>

<form action="post-add.php" method="post">
<table>
<tr>
<td class="bold">Title: </td>
<td><input type="text" name="title" /></td>
</tr>
<tr>
<td class="bold">Content: </td>
<td><textarea name="content" style="width: 600xp; height: 400px;"></textarea></td>
</tr>
<tr>
<td class="bold">Catagory: </td>
<td><input type="text" name="category" /></td>
</tr>

<?php
write('<input type="hidden" name="parentID" value="' . $_GET['id'] . '"/>');
?>

<tr>
<td class="bold"></td>
<td><input type="submit" value="Post" /></td>
</tr>
</table>
</form>

<?php

$page->drawFooter();

?>