You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
370 B
13 lines
370 B
<?php
|
|
$servername = "studenti.odbornaskola.cz";
|
|
$username = "u447";
|
|
$password = "000000";
|
|
$dbname = "u447";
|
|
|
|
// Create connection
|
|
$conn = mysqli_connect($servername, $username, $password, $dbname);
|
|
// Check connection
|
|
if (!$conn) {
|
|
die("Connection failed: " . mysqli_connect_error());
|
|
}
|
|
?>
|