15 lines
286 B
PHP
15 lines
286 B
PHP
<?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);
|
|
}
|
|
|
|
?>
|