This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
emergencysite/submit.php

16 lines
285 B
PHP
Executable File

<?php
die("Not implemented yet");
require('include.php');
$p = null;
$db = new Database();
if (isset($_POST['p'])) {
$p = $_POST['p'];
}
if (isset($p)) {
//TODO: Actually handle the user's input.
} else {
//TODO: Display an interface for submitting a "whatever".
}