web_AI-3/dbh.php

13 lines
291 B
PHP
Raw Normal View History

2017-01-11 21:42:17 +01:00
<!-- dbh file for the login -->
2017-01-11 20:21:27 +01:00
<?php
<!-- Connection to the Server -->
$conn = mysqli_connect("localhost:4022", "root", "password", "login");
<!-- Connection to the Server end -->
if (!$conn){
die("Connection failed:".mysqli_connect_error());
}
?>
2017-01-11 21:42:17 +01:00
<!-- dbh file for the login end -->