mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-06 22:34:08 +00:00
18 lines
359 B
PHP
18 lines
359 B
PHP
![]() |
<?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;');
|
||
|
?>
|