This may not be possible, but I'd like to ask anyway and see if there's a creative solution out there.
I'd like to have a "file" form field on my site that uploads a file into a BLOB field in a MYSQL database. I must use PHP to accomplish this task.
Normally, I know you would open the temp file found in the $_FILES array, using fopen(), then add the data to the db that way. In this case however, the fopen() function, and pretty much all other file handling functions (file_get_contents, etc) are disabled in php.ini.
Is there a way to get the file data from the HTTP post and put it into the MYSQL database without relying on the file handling functions built into PHP?
P.S. shell_exec is also disabled