Re: session_name("CCLTrolley")

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Robert Cummings wrote:

To decrement the quantity of an item in the trolley:
<?php
if( isset( $_SESSION['TrolleyContents'][$myData->RNum] ) )
{
   $_SESSION['TrolleyContents'][$myData->RNum] -= 1;
   if( $_SESSION['TrolleyContents'][$myData->RNum] <= 0 )
   {
       unset( $_SESSION['TrolleyContents'][$myData->RNum] );
   }
}
?>
I'll leave it as an exercise for you to add or delete X quantity.
Cheers,
Rob.
Thanks. Always willing to learn,
John

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux