OnLine Shopping Problem.
-
In online shooping, when any customer click at AddToCart button. The customer first login,and I save customer's data in database with login-id. So all customer's data is saved with own login-id. hence,we retrive customer data in select statement with where condition = login-id. But I want that there will no option of login, then how we manage all customer's data, so that shopping process be possible.... Plz help me.. Thanks Ajai Chaudhary
-
In online shooping, when any customer click at AddToCart button. The customer first login,and I save customer's data in database with login-id. So all customer's data is saved with own login-id. hence,we retrive customer data in select statement with where condition = login-id. But I want that there will no option of login, then how we manage all customer's data, so that shopping process be possible.... Plz help me.. Thanks Ajai Chaudhary
You could use the user's session id to initially store their selections against. However, at some point the user is going to have to provide you with some personal information (name, address, credit card no) to make their purchases. It would be better to have some way of persisting user details so they don't have to enter the same information every time they come to your site to make a purchase. Paul