|
I am used to ZenCart, which is a spinoff from osCommerce, and it stores cart vars in a session varible. So you might try
$_SESSION['cart']->contents[$products_id]['qty']
You can always print out all of the global varibles too.
print_r($GLOBALS);
Once you do that, take a look at the source code, and look for the contents array.
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|