Database

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

<?

php
$mysqli = mysqli_connect("localhost", "root", "", "a");

if (mysqli_connect_errno()) {
printf("connect failed: %s\n", mysqli_connect_error());
exit();
} else {
printf("Host information: %s\n", mysqli_get_host_info($mysqli));
}

if (mysqli_connect_errno())
?>

You might also like