Moves splt private and public files

This commit is contained in:
Marijn Jansen
2017-01-13 14:26:38 +01:00
parent 120e02f4d1
commit faf5442528
37 changed files with 35 additions and 35 deletions

14
website/connect.php Normal file
View 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);
}
?>