Untitled

 avatar
unknown
plain_text
5 months ago
310 B
3
Indexable
<?php
    $host = "localhost";
    $user = "root";
    $pass = "";
    $dbname = "jomarsangil_db";
    //Connection string to connect database
    $conn = new mysqli($host, $user, $pass, $dbname);

    if($conn->connect_error)
    {
        die("Connection failed: ".$conn->connect_error);
    }
?>
Editor is loading...
Leave a Comment