7 lines
187 B
PHP
7 lines
187 B
PHP
|
<?php
|
||
|
// fichier de configuration en production
|
||
|
define("DB_HOST", "localhost");
|
||
|
define("DB_USER", "root");
|
||
|
define("DB_PASSWORD", "vps@2017GA");
|
||
|
define("DB_DATABASE", "iLink_cannary");
|
||
|
?>
|