aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/10 DB Verbindumg/02 Muster_PDO/include/config.inc.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +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 = '';
?>