File "connect.php"
Full Path: /home/analogde/www/Design/fileman/Fusion/datatable/03/connect.php
File size: 276 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$host = "analogdepat.mysql.db";
$username = "analogdepat";
$password = "Un92pac007";
$database = "analogdepat";
$conn = new mysqli($host, $username, $password, $database);
if(!$conn){
echo "Database connection failed. Error:".$conn->error;
exit;
}
?>