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
473 B
19 lines
473 B
<?php
|
|
|
|
//Prefixe
|
|
$rep=__DIR__.'/../';
|
|
//BD
|
|
$bd['dsn'] = "mysql:host=localhost;port=8888;dbname=bdPhp";
|
|
$bd['user'] = "root";
|
|
$bd['pswd'] = "root";
|
|
//Vues
|
|
$vues['acceuil']='vues/acceuil.php';
|
|
$vues['connection']='vues/connection.php';
|
|
$vues['inscription']='vues/inscription.php';
|
|
$vues['listesPrivees']='vues/listesPrivees.php';
|
|
$vues['creationListe']='vues/creationListe.php';
|
|
$vues['infosListe']='vues/infosListe.php';
|
|
$vues['creationTache']='vues/creationTache.php';
|
|
|
|
|
|
?>
|