Untitled

Anonymous
plain_text
10/07/2024 8:48 AM
400 B
12
Indexable
<?php
    //Database connection string
    $host = "localhost";
    $user = "root";
    $pass = "";
    $dbname = "sangil_db";

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

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

?>
Editor is loading...
Leave a Comment