db.php
unknown
php
a year ago
290 B
7
Indexable
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "attendance";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn ->connect_error){
die("Connection Failed: ". $conn->connect_error);
}
?>Editor is loading...
Leave a Comment