Untitled
unknown
plain_text
a year ago
299 B
7
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