I'm trying to pass a huge string (1.4meg) into an INSERT statement in mysql. It seems that PHP will not allow strings that large, and thus I cannot insert the string. Any ideas of how to get around this limitation?
Yea. Don't do it. Write the 1.4 meg to a file where it belongs and save the file name in the DB. There are easy ways to create unique filenames based on timestamp, primary id, etc.