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."

Edited by MySQL_Narb
Link to comment
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.

Link to comment
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.

 

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.