I changed my mind

This commit is contained in:
Daniel Løvbrøtte Olsen
2016-05-12 22:26:09 +02:00
parent b9e0ef7f43
commit f76ca2b4df
2 changed files with 0 additions and 0 deletions

View File

@@ -1,7 +0,0 @@
<? php
return array(
'db_host' => 'localhost'
'db_username' => 'root'
'db_password' => 'password'
);

View File

@@ -1,24 +0,0 @@
<?php
$config = include('config.php');
?>
<html>
<head>
<title>CSGO skin database</title>
</head>
<body>
<?php
$con = mysqli_connect($config.db_host, $config.db_username, $config.db_password);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connection succeded";
?>
</body>
</html>