hello all, after the update to 2017.3.0f3 i become a error message (Notice: Undefined index ) from my server when i try a Webrequest, few days ago it works fine :(
public IEnumerator anmeld_coro(string Username, string hash_regist)
{
WWWForm form = new WWWForm();
form.AddField("username", Username);
form.AddField("passwort", hash_regist);
UnityWebRequest webRequestroh = UnityWebRequest.Post("http://ho***********************in.php", form);
yield return webRequestroh.SendWebRequest();
Debug.Log (webRequestroh.downloadHandler.text);
}
Please help
↧