Moves splt private and public files
This commit is contained in:
14
website/connect.php
Normal file
14
website/connect.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
$servername = "agile136.science.uva.nl";
|
||||
$username = "mhbp";
|
||||
$password = "qdtboXhCHJyL2szC";
|
||||
|
||||
// Create connection
|
||||
$conn = new mysqli($servername, $username, $password);
|
||||
|
||||
// Check connection
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user