Initial commit

This commit is contained in:
whoisfrost
2026-02-17 13:30:09 -06:00
commit f24a2e2235
404 changed files with 37425 additions and 0 deletions

9
includes/dbconnect.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
$host="192.168.0.2";
$username="corey";
$password="41945549";
$database="controls";
$con = mysqli_connect($host ,$username, $password, $database);
@mysqli_select_db($con, $database) or die( "Unable to select database");
?>