Is there a maximimun number of fields for WWWForm.AddField?

Nothing is documented but I’m up to 1600-ish fields and I’m having problems. I didn’t think this would be an issue as WWWForm uses POST doesn’t it?

Cheers

1 Answer

1

I just did some tests and it looks like 1000 fields maximum.(At least php stops echoing data once I go past that mark). Is that right? I was hoping to save my save data files this way (to a database) but it doesn’t look like that will be happening then.

Surely this should be documented somewhere right?,I just did some tests and php stops printing out data as soon as I try to add more than 1000 fields. Can this be correct??!

I'm actually getting php to echo a single variable $dataLength which is the number of fields that I created in unity at runtime. The dataLength shows me a reading up until 999 addfields. It prints dataLength=999(I use saveData_post.text to print this single var in the console) If I create 1000 or more addfields in Unity then php just returns dataLength= (without a reading).