51 lines
No EOL
1.2 KiB
PHP
Executable file
51 lines
No EOL
1.2 KiB
PHP
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<title>Snuffler</title>
|
|
</head>
|
|
<body>
|
|
<div id="centerbox">
|
|
<h1>Snuffler</h1>
|
|
<form id="postform">
|
|
<textarea id="postformtextarea" name="text" rows="5" placeholder="Whatcha snuffin' about?"></textarea><br />
|
|
<div id="postformactionrow">
|
|
<select id="user" name="user">
|
|
<option value=0>SYSTEM</option>
|
|
<option value=1>User</option>
|
|
</select>
|
|
<input type="submit" id="submit" name="submit" value="Snuff!" />
|
|
</div>
|
|
</form>
|
|
|
|
|
|
<?php
|
|
require_once "inc/database.php";
|
|
|
|
$database = new DataBase();
|
|
|
|
if(!$database) {
|
|
die($database->lastErrorMsg());
|
|
}
|
|
|
|
//$database->addPost("Test post", 0);
|
|
|
|
$posts = $database->getPosts();
|
|
//var_dump($posts);
|
|
foreach($posts as $post) {
|
|
echo '<div class="post">';
|
|
echo '<strong>' . $post["user.name"] . '</strong>';
|
|
echo '<br><small>@' . $post["user.handle"] . '</small>';
|
|
echo '<p>' . $post["post.text"] . '</p>';
|
|
echo '<hr><small>' . date("D j.n.Y \k\l\o G:i", $post["post.time"]) . '</small>';
|
|
echo '<span class="postactions">5👍 0👎 2💬</span>';
|
|
echo "</div>";
|
|
|
|
}
|
|
$database->close();
|
|
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|