<?php
/**
* XS2:
*
* This file is developed by Solutecs, LLC for the purpose of the company
* and is provided together with XS2 Framework as and inherent part of the
* system. This file can be used on the terms of License Agreement.
*
* +7 (495) 585-0833 / 13 Rusakovskaya street, Moscow 107140 Russia
*
* @link http://www.solutecs.com
* @copyright ©1998-2007 Solutecs, LLC
* @package XS2-MODCOM
* @subpackage proc-shop
* @version 1.XX
*/
session_start();
$basket = $_SESSION['basket'] ? $_SESSION['basket'] : array();
if('calculate'==$_POST['action']) {
foreach($_POST['cnt'] as $id=>$count) {
if(0==$count) { unset($basket[$id]); }
else { $basket[$id] = $count; }
}
$_SESSION['basket'] = $basket;
}
header('location: '.xs2Href(array('mod'=>$_THE['QUE']['MOD'],
'obj'=>$_THE['QUE']['OBJ'],
'met'=>'basket')));
?>
|
|