Question by 
               dkardell · Mar 17, 2021 at 11:15 PM · 
                webrequestwwwform  
              
 
              WWWForm not posting variables
I have this working just fine in one project however in a second project my _POST variables are blank. Thoughts?
   IEnumerator GetClub()
     {
         Debug.Log("GetClub: - START");
         WWWForm form = new WWWForm();
         form.AddField("state", "TX");
         form.AddField("author", "MYNAME");
 
         UnityWebRequest res = UnityWebRequest.Post(getGlubsURL, form);
 
         yield return res.SendWebRequest();
 
         Debug.Log(res.downloadHandler.text);
 
               and the php file is a simple
 <?php
 echo "MADE IT  ";
 echo "author: [" . $_POST['author'] . "] ";
 echo "state: [" . $_POST['state'] . "]";
 ?>
 
               and console in unity is:
 HERE author: [] state: []
 UnityEngine.Debug:Log (object)
 
 
              
               Comment
              
 
               
              Also verified with POSTMAN that the site does return the POSTED variable, however Unity does not
Your answer