aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/10 DB Verbindumg/02 Muster_PDO/include/config.inc.php
Harald G. Mueller cdff097ef7 muh
2022-03-17 11:19:26 +01: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 = '';
?>