Forum Moderators: coopster
I'm creating a web store that has shared SSL. To use it I will have to redirect users from my main domain (www.mysite.com) to their secure domain (secure.host.com/~mysite).
I was wondering what the best way is to share information from my site to the secure site (mainly items that the customer wants to buy). I'm using PHP and MySQL. I thought about using cookies but that doesn't seem to work.
Any suggestions would be great.
www.mysite.com =/= secure.host.com/~mysite ii) only is necessary a secure site for manage finantial info, so share items info over unsecure connection normally:
secure.host.com/~mysite?itemToBuy1=$price1&itemToBuy2=$price2 iii) the best way for your users is offer them a well known "billing gateway" for their transactions. they do all finantial management over very secure servers and carrie with legal responsabilities, shipping, etc...
comment please :)
---