Reedyn / Just-Another-Webshop

Webshop built for a university PHP project
2 stars 1 forks source link

Shopping Cart #13

Closed Reedyn closed 10 years ago

Reedyn commented 10 years ago

I'm thinking what the best approach for the Shopping Cart would be.

Having it on the front-end only seems like the obvious choice to me.

My suggestion:

Reedyn commented 10 years ago

Syntax

$_SESSION['cart'] = array (
    productId => amount (integer),
);

Example

$_SESSION['cart'] = array (
    534758435 => int 2,
    534654635 => int 1,
);