You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php// Datenbankverbidnung aufbauen// @ -> Keine Fehlermeldung dem user zeigen!
@$connection = newMySqli('localhost', 'root', '', 'cinema');
// Wenn ein Fehler beim Verbindungsaufbau ist -> abbrechen mit 500 internal server errorif ($connection->connect_errno) {
header("HTTP/1.1 500 Internal Server Error");
die();
}
$connection->set_charset('utf8'); // Setzen der Encoding auf utf8, damit Umlaute nicht kaputt sind.