File "_db.php"
Full Path: /home/quiczmwg/lightspringdigitals.com/__MACOSX-20260115033236/_db.php
File size: 417 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$host = "localhost"; // or 127.0.0.1
$user = "root";
$pass = "";
$db = "choicy"; // Make sure this database is created in phpMyAdmin
// $conn = new mysqli('localhost','fpmarke3_fpmarketexpert', '&&#&addminggfn!#','fpmarke3_fpmarketexpert');
$conn = new mysqli($host, $user, $pass, $db);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>