ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/fermegarat.com/CE_payment/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
$Numero_commande= $_POST['commandeid'];
$Numero_commande = substr_replace("000000",$Numero_commande, -strlen($Numero_commande));
$sTotal = $_POST['total'];
//RETIRE LA VIRGULE SI MILLE
/**************************/
$sTotal_affiche = str_replace(",", " ", $sTotal);
$sTotal_affiche = str_replace(".", ",", $sTotal_affiche);
$sTotal = str_replace(",", "", $sTotal);
$Montant_commande = $sTotal * 100;
// Selection de la langue
$array_lang = array('en','fr');
$lang=(isset($_REQUEST['lang']))? $_REQUEST['lang'] :'fr';
if (!in_array($lang,$array_lang)) {
$lang="fr";
}
include($lang.'.php');
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Connexion au serveur de paiement</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body >
<div id="container">
<div id="Title_information">
<img class="" src="./img/admin_mail_banner.jpg" alt="Logo PSP"/>
<div class="header_title" ></div>
</div>
<hr>
<br />
<h1 align="center">Connexion au serveur / <span class="anglais">Connection to the payment server</span></h1>
<div id="presentation">
<p align="center">
</div>
<div id="frm">
<p align="center">
Cliquez sur le bouton ci-dessous pour vous connecter au serveur de paiement.<br />
<span class="anglais">Click on the following button to be redirected to the payment server.</span>
</p>
<p style="text-align: center"><font size="4">Montant à payer : <?php echo $sTotal_affiche ?> €</font>
</p>
<form style="margin-top:10px;"method=POST action=form_payment.php >
<input type="hidden" name="lang" value="fr" />
<input type="hidden" name="vads_amount" value="<?php echo $Montant_commande ?>" />
<input type="hidden" name="vads_order_id" value="<?php echo $Numero_commande ?>" />
<p style="text-align: center">
<button type="submit" class="validationButton" >
<span><font size="4">Payer maintenant</font></span>
</button>
</p>
</form>
<br />
</div>