I currently retrieve all data from db with my sql query below by sending request to server’s php file. I need to post to the php file a variable as criteria for this mysql request, e.g WHERE carName=…
Tag: unity3d
UnityWebRequest POST to PHP not work
I use documentation with WWWForm: https://docs.unity3d.com/Manual/UnityWebRequest-SendingForm.html C#: void Start() { StartCoroutine(Upload()); } IEnumerator Upload(){ yield return Upload1()…