
- /html/upload-file.php - /html/editpage.php - /html/admin.php - /html/journal-interne.php - /html/login.php - /html/compte.php - /html/upload.php - /config/global.ini - /include/variables.php - /include/functions.php
18 lines
494 B
PHP
18 lines
494 B
PHP
<?php
|
|
$config = parse_ini_file('../config/global.ini', true);
|
|
|
|
$dbuser = $config['sql']['dbuser'];
|
|
$dbpass = $config['sql']['dbpass'];
|
|
$dbname = $config['sql']['dbname'];
|
|
$dbhost = $config['sql']['dbhost'];
|
|
|
|
$title = $config['main']['title'];
|
|
$header_title = $config['main']['header-title'];
|
|
$header_subtitle = $config['main']['header-subtitle'];
|
|
$copyright = $config['main']['copyright'];
|
|
$nav = $config['nav'];
|
|
$navadmin = $nav;
|
|
$status = "";
|
|
$classifications = $config['classification'];
|
|
|
|
?>
|