JBoy
September 27, 2013, 6:41am
1
I am moderately experienced with unity networking, but i’m not really sure how to go about uploading a string to a php script/website, then be able to access it later? If anyone could help or provide an example that would be really great Thanks
if its running serverside could serialise the fields/properties/objects to xml.
or JSON
For .NET Framework 4.7.2 and later versions, use the APIs in the System.Text.Json namespace for serialization and deserialization. For earlier versions of .NET Framework, use Newtonsoft.Json. This type was intended to provide serialization and...
Or you could output it to a textfile thats delimited/formatted however you want and read that.
Otherwise you may need to learn about http requests namely POST
In computing, POST is a request method supported by HTTP used by the World Wide Web.
By design, the POST request method requests that a web server accept the data enclosed in the body of the request message, most likely for storing it. It is often used when uploading a file or when submitting a completed web form.
In contrast, the HTTP GET request method retrieves information from the server. As part of a GET request, some data can be passed within the URL's query string, specifying (for example...