How difficult is it to set up a simple paypal shop on a site. All I need is a drop down but to select the size and color and a buy button that goes straight to paypal. Anyone know of any good tutorials that'll show me how to implement this? Thanks
Generate the buttons on your paypal account and get their source code for email payments. Your button code should look like this: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=####### where ####### is your button's unique ID number. Your code for the dropdown should be something like this: <form action='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick' method='get'> <select name='hosted_button_id'> <option value='#######'>Product 1</option> <option value='#######'>Product 2</option> <option value='#######'>Product 3</option> </select> </form> Again, replace ####### with the button IDs.