PHP Cart Problem
Posted: Wed May 07, 2008 5:00 am
Hi guys, i have a problem with my carrello.php
the code i have inserted is this:
Carrello.php
How can i delete a selected voice? If anyone use it and want to remove one object from the list, how could do this?
the code i have inserted is this:
Carrello.php
Code: Select all
<?
session_start();
$_SESSION['count'] = $_POST['count'];
if ($_SESSION['count'] > 0)
{
$_SESSION['nome'] .= "<br>" .$_POST['nome'];
$_SESSION['quantita'] .= "<br>" .$_POST['quantita'];
$_SESSION['prezzo'] .= "<br>" .$_POST['prezzo'];
}
exit();
?>