I want to develop a shopping cart site please suggest me any tutorial or basic concept which i should follow.
hi try oscommerce or zencart. they are free open source shopping cart. rest it all depends on your php skills, upto what level of php you know. vineet
Thanks vinpkl I already know about oscommerce and zen but i want to develop my own shopping cart system.
If you are looking to develop your own first split out the entire system into following: -> List / View Products (uses simple MySQL select to retrieve) -> Add to Cart (You can use Session or Insert in a database) -> User Registration (You should know how to do this by now already. If not google for it. There are many tutorials on this already) -> Checkout -> Transfer to PayPal -> IPN -> Process (Involves Insert / Update / Session / phpmail) And Admin Area would be more easier as you would have mostly SELECT (to view) and UPDATE to update any order / product and INSERT to add any product. You would get better help on these forums if you post a more specific question rather than a general one.