I've been going through the documentation for submitting a form via UnityWebRequest.Post, and seemingly no matter what method I use, the values always run in empty on the server.
Here is my IEnumerator that submits the web request
UnityWebRequest Post submits empty/null $_POST
Here is my IEnumerator that submits the web request
Code (CSharp):
- IEnumerator Upload()
- {
- form.AddField("action", "create-user");
- //url is filled in on my end, replacing with "--------" here
- UnityWebRequest www = UnityWebRequest.Post("--------",...