Search Unity

Use any PHP supported webspace for wwwform with Unity free?

Discussion in 'Android' started by programicks, Sep 6, 2014.

  1. programicks

    programicks

    Joined:
    Sep 5, 2014
    Posts:
    11
    Hi.

    I am using Awardspace free as it says it supports PHP5 and developing Android app.

    I was wondering, as long as your web server supports PHP, you can upload your PHP file to it and use Unity wwwform functions to send data to it?

    I don't want to have to setup mySQL if I don't have to. I only want to set simple scores and id for a player.

    You don't need anything like mySql, just a webspace that supports PHP that you can upload the PHP to?

    Cheers.
     
  2. Dustin-Horne

    Dustin-Horne

    Joined:
    Apr 4, 2013
    Posts:
    4,568
    Well... you need a place to store your scores and player ids. You could do it any number of ways. You could serialize them as json or XML or whatever your preferred format and store them as flat files on your system. You could even use something like SQLite which is a file based database and doesn't require MySQL setup, but either way you're going to need to store the data somehow.
     
    programicks likes this.