peachykeen wrote a program, MWSQL, which I believe holds tremendous promise. I want a way to securely get data from a local database using that program, and insert it into an online database...and do it in real-time.
So here's the plan (without giving away the whole scope of my vision yet.) A user first registers on a site, and then goes to the "Register New Character" module. This will generate a character ID and provide it to the player. The player will then run Morrowind, using MWSQL, and a specific mod I will make. The initial setup of this mod will ask for a valid character ID. This ID is then stored in the local database, along with the pertinent game data that this entire thing will revolve around. At given intervals (probably something like every 5 minutes) that data in the database will be updated. When that happens, somehow, the data should be sent to the online database. There will then be a website that uses that data to display this information.
So the question is, how exactly can I go about doing this? And how can I do it securely? I don't have ninja-skills with MySQL yet, though I am gradually learning it. So I'm not entirely sure about the best way to go about doing this. Would it best be some sort of browser-based extension, or perhaps a standalone program written in C++, C#, Python, or something similar?