db.php
Anonymous
php
10/20/2024 12:10 PM
388 B
16
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