starting shit oops forgot the db

This commit is contained in:
unknown 2019-11-03 00:53:48 -04:00
commit 9e17051db3
5 changed files with 328 additions and 0 deletions

6
imp/db.php Normal file
View file

@ -0,0 +1,6 @@
<?php
$db = mysqli_connect('localhost', 'root', '', 'mspa');
if (!$db) {
exit("Connection failed: " . mysqli_connect_error());
}