PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I"m writing a file upload script. My script requires a larger max_file_size be set in the php ini. So I'm using ini_set to change the size allowable. But my script keeps dieing. It would seem that it is not executing. Here's what I'm using.
Sets the value of the given configuration option. Returns the old value on success, FALSE on failure. The configuration option will keep this new value during the script's execution, and will be restored at the script's ending.
Unless you have register globals on your script will never be TRUE, therefor, will aways DIE.