You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
19 lines
395 B
<?php
|
|
namespace App\config;
|
|
//gen
|
|
$rep = __DIR__ . '/php/';
|
|
|
|
// liste des modules à inclure
|
|
$dConfig['includes']= array('controleur/Validation.php');
|
|
|
|
//BD
|
|
$base = 'mysql:host=localhost;dbname=dbAlica';
|
|
$login = 'test';
|
|
$mdp = 'test';
|
|
|
|
static $OffersByPage = 5;
|
|
|
|
define('DB_HOST', 'mysql:host=localhost;dbname=dbAlica');
|
|
define('DB_USER', 'Dev');
|
|
define('DB_PASS', 'Dev');
|