Jump to content

Communicating with a server?


MySQL_Narb

Recommended Posts

I just finished up a PayPal IPN script for a website we're working on; however, when a user buys "points", we need to somehow get it to the game server (where they can buy in-game items with there new virtual points). Let's assume this server is a Minecraft server. How would I, with PHP, be able to send something along the lines of a packet to say: "Hey, so and so now has 200 points. Update their point count."

Link to comment
https://forums.phpfreaks.com/topic/279441-communicating-with-a-server/
Share on other sites

There are all sorts of ways of doing this dependant on the protocol the server speaks. If it's simply http then you can use curl though I prefer to use higher level libraries like Guzzle. But yeah, the first thing you need to figure out is what does the server expect these requests to look like.

There are all sorts of ways of doing this dependant on the protocol the server speaks. If it's simply http then you can use curl though I prefer to use higher level libraries like Guzzle. But yeah, the first thing you need to figure out is what does the server expect these requests to look like.

 

I need to be communicating through the TCP/IP protocol.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.