I am having problems with a field being cut off in an app i'm working on. It appears to me that there is some kind of limit on how large a field can be when posting data, but i find no mention of that anywhere, save for the "memory_limit" and "post_max_size" vars in the php.ini, both of which are set much higher than the size of the data being submitted. Also the database field it's being inserted into is a MEDIUMTEXT size, and the data gets nowhere near that limit before being cutoff.
So i'm trying to figure out if it's a problem with the browser, or with a strange setting in php. I'm running Firefox 2.0.0.2, connecting to php 5.1.6 running on apache 2.0.58 with mysql 5.0.26
Has anyone come across an issue like this, and have any solutions other than splitting it into multiple fields? Thanks for the help in advance!