This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Misc-small-projects/CS-GO/Skins/db/main.php

24 lines
344 B
PHP

<?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>