Rename wishlist
This commit is contained in:
parent
20aeab4578
commit
24c6fdf5fa
1 changed files with 0 additions and 43 deletions
|
@ -1,43 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* wishlist.php
|
|
||||||
*
|
|
||||||
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
|
||||||
*/
|
|
||||||
|
|
||||||
use wishthis\Page;
|
|
||||||
|
|
||||||
$page = new page(__FILE__, 'Home');
|
|
||||||
|
|
||||||
if (isset($_POST['name'])) {
|
|
||||||
$database->query('INSERT INTO `wishlists`
|
|
||||||
(`user`, `name`) VALUES
|
|
||||||
(' . $_SESSION['user']['id'] . ', "' . $_POST['name'] . '")
|
|
||||||
;');
|
|
||||||
|
|
||||||
$_SESSION['user'] = $user;
|
|
||||||
|
|
||||||
header('Location: ?page=home');
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
$page->header();
|
|
||||||
?>
|
|
||||||
<main>
|
|
||||||
<section>
|
|
||||||
<h1>Create a wishlist</h1>
|
|
||||||
|
|
||||||
<form method="post">
|
|
||||||
<fieldset>
|
|
||||||
<label>Name</label>
|
|
||||||
<input type="text" name="name" placeholder="<?= getCurrentSeason() ?>" value="<?= getCurrentSeason() ?>" />
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<input type="submit" value="Create" />
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
$page->footer();
|
|
Loading…
Reference in a new issue