Ok here's the thing.
My webhost, which happens to be the cheapest and most reliable in my country, doesn't allow direct access to my MySQL database. I can only connect to it using "localhost" on the website.
This is a bit of a piccle since I have to write a desktop application to interact with the database (could use a web interface, but I'd like to avoid it if I can). I'll probably write it in C#.
So maybe I could make a simple PHP MySQL connection script and somehow query the database with C# using that connection. Is this possible?