
Originally Posted by
swguy
If the cart is green, you can click on it and it will show the contents of the cart.
What might cause it not to work is if your host runs suhosin. Instructions are inside admin/whos_online.php for a way to deal with this. (Search for "suhosin".
ok thanks! I'll open up the php editor and take a look at whats doing for suhosin!!
In the meantime I did figure out what I needed to know via SQL. I am WAYYYY more comfortable working with sql than php
so if anyone is comfortable with using your mysql-phpadmin here is the query I used
Code:
select `znc_customers_basket`.`products_id` , `products_model` , `znc_manufacturers`.`manufacturers_name` , `products_image`
FROM `znc_customers_basket` inner join `znc_products` on `znc_customers_basket`.`products_id` = `znc_products`.`products_id`
inner join `znc_manufacturers` on `znc_products`.`manufacturers_id` = `znc_manufacturers`.`manufacturers_id`
WHERE `znc_customers_basket`.`customers_id` = 19
YOU might not need as much info as I have here. techincally speaking just a simple query for the product ID should be enough to fill an order. But in my case I needed the extra info to resolve a customer question.
thanks again to you guys for the speedy help!
Photoseller