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