This commit is contained in:
Leander
2017-03-02 11:19:26 +01:00
commit 8083f5568f
5 changed files with 84 additions and 0 deletions

18
register.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
/**
* Created by PhpStorm.
* User: leanderschmedemann
* Date: 02/03/2017
* Time: 10:23
*/
require_once('includes.inc.php');
$name = $_GET['name'];
$database = new Database();
$result = $database->query('SELECT * FROM CATEGORIES');
print nl2br(print_r($name, true));
print nl2br(print_r($result, true));
?>