Reputation: 51
I'm creating a posting exchange system that allows people to earn points for posting on certain sites. These sites must contain a parser that sends the post counts of the users to the home site where user's points are kept up with in the database.
How would I go about accomplishing this?
How do I get the information from one site's database and send it to another site to be processed?
Upvotes: 0
Views: 95
Reputation: 681
Since you're not on charge of the websites, your best option would be to implement a web service like SOAP or REST.
Upvotes: 1