22 lines
1.1 KiB
PHP
Executable File
22 lines
1.1 KiB
PHP
Executable File
<?php
|
|
// -----------------------------------------------------
|
|
// Affichage
|
|
// -----------------------------------------------------
|
|
if (isset($_SESSION['reglageExtension'])) $reglageExtension=$_SESSION['reglageExtension'];
|
|
if (isset($_GET['reglageExtension'])) $reglageExtension=$_GET['reglageExtension'];
|
|
|
|
// -----------------------------------------------------
|
|
// Formulaire
|
|
// -----------------------------------------------------
|
|
if (isset($_GET['codeRetourPaiement'])) {$codeRetourPaiement=$_GET['codeRetourPaiement']; }
|
|
if (isset($_GET['checkOutSession_id'])) {$checkOutSession_id=$_GET['checkOutSession_id']; $_SESSION['checkOutSession_id']=$checkOutSession_id; }
|
|
|
|
if (isset($_GET['idAbo']) && !empty($_GET['idAbo'])) {$idAbo=$_GET['idAbo'];}
|
|
if (isset($_GET['idSms'])) {$idSms=$_GET['idSms'];}
|
|
|
|
// pour les abonnements
|
|
if (isset($_GET['desc']) && !empty($_GET['desc'])) {$desc=$_GET['desc'];}
|
|
if (isset($_GET['cliOpt']) && !empty($_GET['cliOpt'])) {$cliOpt=$_GET['cliOpt'];}
|
|
if (isset($_GET['idPresta'])) {$idPresta=$_GET['idPresta'];}
|
|
// if (isset($_GET['idPrdRech'])) $idPrdRech=$_GET['idPrdRech'];
|
|
?>
|