Started code yeaah
This commit is contained in:
commit
ced9eba276
9 changed files with 115 additions and 0 deletions
30
index.php
Executable file
30
index.php
Executable file
|
@ -0,0 +1,30 @@
|
|||
<!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();
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue