I've got a php ecommerce site that stores (in a session) product_id => quantity pairs as a shopping cart. Someone else is building a shopping cart/checkout system in asp (actually aspx - not sure what the difference is). I need to be able to pass the php session cart to asp for checkout.
I understand a php session is kind of its own thing, not readable by asp.
I read about doing this via a form - submitting my pairs as hidden form fields via get or post. Wondering if there's a way instead to have asp grab a cookie. I could cookie the cart on the php side, and have asp pick it up.
Is that something that'd work? Of course the user would need cookies enabled...maybe the form approach is better.
Advice?