Retrieve
Retrieve
php
// Connect to the database
$conn = mysqli_connect("localhost", "username", "password", "student_database");
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
// Close connection
mysqli_close($conn);
?>