This commit is contained in:
Alexandr
2018-03-26 15:25:02 +02:00
parent f85d3616c7
commit aaf9a59303
196 changed files with 3046 additions and 0 deletions

17
new/db.php Executable file
View File

@ -0,0 +1,17 @@
<?php
$servername = "localhost";
$username = "chiptune";
$password = "pass";
$base = "chiptune";
// Create connection
$con = mysqli_connect($servername, $username, $password, $base);
// Check connection
if (!$con) {
die("Connection failed: " . mysqli_connect_error());
}
//echo "Connected successfully";
$test = mysqli_query($con, 'show tables;');
?>