14 lines
382 B
PHP
Executable File
14 lines
382 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
// $includePathConf="../_conf";
|
|
// include ("../_include/dataBaseConnect.php");
|
|
|
|
if ($bdd=='demo' || $_SESSION['ENVIRONNEMENT']=='local') {
|
|
include ($includePathAdmin. '/psk/psk.test.php');
|
|
include ('stripeAboIds.test.php');
|
|
}
|
|
else {
|
|
include ($includePathAdmin. '/psk/psk.prod.php');
|
|
include ('stripeAboIds.prod.php');
|
|
}
|
|
?>
|