HEX
Server: LiteSpeed
System: Linux server019.our-control-panel.com 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64
User: aashishs (1103)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/aashishs/.trash/submit.php.2
<?php
$host = "localhost";
$user = "aashishs_mental";  // Ensure this is correct
$password = "Aashish@3690";  // Replace with actual password
$dbname = "aashishs_mental_health";  // Ensure this is correct

$conn = new mysqli($host, $user, $password, $dbname);

if ($conn->connect_error) {
    die("Database Connection Failed: " . $conn->connect_error);
}

echo "✅ Database Connected Successfully!";
?>