<?php $conn = new mysqli('localhost', 'root', '', 'student_records'); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } ?>
12345678