Just put this together from what i read in the php manual. Cant get it to work though.
<? echo 'upload_max_filesize = ' . ini_get('upload_max_filesize'); $newUpload_limit = ini_set('upload_max_filesize', 'upload_max_filesize'+50); echo '<br>upload_max_filesize = ' . ini_get('upload_max_filesize'); ?>
Cheers Paul
what does 'can't get it to work though' meen? are you getting errors? what does happen?
never used it, but i would think ini_set would work more like;
ini_set('upload_max_filesize', ini_get('upload_max_filesize')+50);
Thanks, makes more sense. i will give it a try.
No joy, Thanks anyway