aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/10-DB-Verbindung/02 Muster_PDO/include/config.inc.php
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

15 lines
237 B
PHP

<?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 = '';
?>