login.php edited online with Bitbucket
This commit is contained in:
parent
53280d74f7
commit
7ced011087
1 changed files with 4 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
|||
<?php
|
||||
session_start();
|
||||
$cockDatabase = "dulow";
|
||||
$vac = "vac";
|
||||
$host = "localhost";
|
||||
$user = "root";
|
||||
$password = "";
|
||||
$user = "vac";
|
||||
$password = "hPUf8e4karnz61bS";
|
||||
|
||||
$conn = new mysqli($host,$user,$password,$cockDatabase);
|
||||
$conn = new mysqli($host,$user,$password,$vac);
|
||||
if($conn->connect_error){
|
||||
die("Verbindung fehlgeschlagen: " . $conn->connect_error);
|
||||
}
|
||||
|
|
Reference in a new issue