aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/10-DB-Verbindung/02 Muster_PDO/include/config.inc.php

15 lines
237 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
// Track all errors for testing
error_reporting(E_ALL);
// General page information
$config_airline_name = 'AMC-Airline';
// Database information
$dsn = 'mysql:host=localhost;dbname=Airline';
$user = 'root';
$password = '';
?>