13 lines
357 B
PHP
13 lines
357 B
PHP
<?php
|
|
session_start();
|
|
include_once('php/inc_start_time.php');
|
|
include_once('php/inc_fonctions.php');
|
|
include_once('php/inc_fx_panier.php');
|
|
|
|
$mem_panierinfo = fxNbItemsPanier($_SESSION['no_panier']);
|
|
|
|
if (!isset($_SESSION['no_panier']) || $mem_panierinfo['nbitem'] < 1)
|
|
header('Location: '. fxGetReferer());
|
|
else
|
|
fxViderPanier($_SESSION['no_panier']);
|
|
?>
|