This inserts the map structure we will use for the project.

This commit is contained in:
Lars van Hijfte
2017-01-10 14:35:56 +01:00
parent a0934f7395
commit 4da39d5bab
6 changed files with 64 additions and 0 deletions

14
website/php/connect.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
$servername = "agile136.science.uva.nl";
$username = "admin";
$password = "qdtboXhCHJyL2szC";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>