snuffler-web/index.php

30 lines
550 B
PHP
Raw Normal View History

2024-09-27 05:47:54 +03:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Snuffler</title>
</head>
<body>
<form>
<textarea name="text" rows="5" placeholder="Whatcha snuffin' about?"></textarea><br />
<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!" />
<h1>Snuffs</h1>
</body>
</html>
<?php
require_once "inc/database.php";
$database = new DataBase();
if(!$database) {
die($database->lastErrorMsg());
}
$database->close();
?>