Quote
I dont understand why you always act rude with me, but lets move on.
I don't understand why you disrespect yourself by presenting yourself like am illiterate grade-schooler. Because I abhor laziness. Because you and I live about 60 miles apart, and I hate that you are propagating the ignorant mid-western stereotype? Because I despise that your posts detract from the quality of information that we here have worked hard to create? Because it is offensive to me that you would ask for my knowledge, knowledge that others pay a lot of money for, and not take the time to show that you are worthy of receiving that knowledge for free? Because I would be embarrassed to death to look illiterate while asking someone to give me the benefit of their knowledge? Because you want people to respect you? Because I think you are smarter than that? But since we are moving on......
Selling items on a web site is as simple as creating an order form, and setting up a Paypal account to accept payment. An order form is no different than a log-in form. You could simply have someone submit an order form, and once the order form is received, send an email back to the person instructing them as to which Paypal account to send payment to. Once payment is confirmed, then the item can be shipped.
There is an acronym that you need to learn, and it is API, which stands for application programming interface. What that means is for any libraries that you might want to use, there is documentation that tells you how to use those libraries. You can research those sort of things by using your search engine and looking for things like
Paypal API, or
Google Checkout API. What you will often find is documentation and source code that you can use to do whatever it is that you want. All programming languages have APIs, and most libraries have some sort of documentation.
For instance, if I wanted to use Google Checkout to handle my transactions, and I was using PHP on my website, I could use my search engine to find
this page. Once I got to that page, I would be able to research some sample code. And if I took the time to read carefully, I would discover that Google provided a sandbox that allowed one to write code and submit sample orders.
I have done about a half a dozen e-commerce websites, and my preference is to use Google Checkout. Their API made sense to me, which isn't to say it was easy to use. There is a good support forum for asking questions, and a lot of good documentation.