This commit is contained in:
2024-10-17 13:51:49 -04:00
parent ba7eef5499
commit e55dc42068
26 changed files with 635 additions and 0 deletions

15
authenticate.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
include_once($_SERVER['DOCUMENT_ROOT'] . "/db_config.php");
$stmt = $mysqli->prepare("CREATE TABLE IF NOT EXISTS users(
id INTEGER PRIMARY KEY,
username TEXT NOT NULL,
passwordHash TEXT NOT NULL,
email TEXT NOT NULL
);");
echo $stmt->execute();
$mysqli->close();