This commit is contained in:
/jedi/ 2018-12-27 08:27:47 +01:00
parent 3ef6faaf8f
commit 0fbd3f2279
18 changed files with 1104 additions and 241 deletions

12
backend.php Normal file
View file

@ -0,0 +1,12 @@
<?php
/**
* Created by PhpStorm.
* User: jedi
* Date: 12/27/18
* Time: 7:01 AM
*/
$mysqli = new mysqli("localhost", "c3cloc", "lrE6AG74aoDBLy.y", "c3cloc");
if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
}
?>