2 hours ago, Aaric90 said:
I'm probably not understanding my options; and I hope i am now.
But to make sure I am this is how it SHOULD be set up.
Client connects to website, website connects to Database submitting Longin/account information with high score data. . Database stores it and sorts it. At a set interval of time Database should send the information to update on the website so the Client can see the information on website and in the game?
And I will look into getting a tower and converting it to a database and one to convert into a webserver(to save on domain hosting costs down the road?).
Can you please let me know what options you've tried from the above posts? Did you get a chance to look at https://curl.haxx.se/ for the Client -> Web Server -> Database and back? Are you going to host the web server on your own computer, or use a 3rd party?
There are only two sources here you need to worry about:
1. Client (Running on the users machine)
2. Web Server (This hosts all your PHP scripts to verify, and other scripts as you need, plus the Database)
I would strongly suggest you try out the suggestion I posted prior, or consider what swiftcoder posted.
If you're using your own computer use WAMP (If on Windows) to install all the tools you need, setup your Database, and program your scripts to work with the client, and database. If you're running into problems we can help a bit more, but I really cannot add anymore nor can anyone else because you have two options in your scenario. Host the web server yourself, or pay for cheap hosting that can access your script file, and host your database. At most this would take someone 30 minutes to setup if you know how to do all the scripting, and database creation. The more technical part would be with how your client talks to the web server, and what option you use to accomplish this task, such as https://curl.haxx.se/