how can i use a database entry in my online game ? (Read/Write)
my database isn't within on webplayer. look . we have tree thing...
1-a web program for manage user account. written with php or asp.
2-database (any compatible kind).
3-online game , this game most have ability to read ,write and edit account information on website.
i haven't and preview about know how can i create a connection with database!
The harder (but more powerful) way is to use the .NET way of connecting to databases - one of which is System.Data.SqlClient. Search UnityAnsweres for "database" and you'll find some examples.
The easier (but less secure and more limited) is to use the WWW class to GET or POST to/from a .php or an .asp web page - which will in turn do all the DB access work for you. If you say you have a site already - you're already using some kind of connection to the database, right? Just copy and edit one of the web pages that have DB connectivity so that Unity will access it. Again - search the forum and UnityAnswers for examples.