Untitled
4 years ago in Plain Text
<?php
$conn = new mysqli('localhost', 'root', '', 'student_records');
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>