|
To make it permanent, locate your php.ini and change it's settings there.
Otherwise, you should place the ini_set before doing the parsing.
As the PHP engine will parse file from top to bottom, if you place the ini_set under the loop where you work, it won't be applied.
That's the reason why it's usually placed at the top of the file.
And yes, it must be enclosed by PHP tags.
__________________
Listen to the ducky: "This is awesome!!!"
|