Hey all..
1- How can I display the php.ini max. file upload limit on my page?
2- Is there a way to change that limit without having to directly accessing the php.ini, or using htaccess?
Cheers!
Hey all..
1- How can I display the php.ini max. file upload limit on my page?
2- Is there a way to change that limit without having to directly accessing the php.ini, or using htaccess?
Cheers!
How can I display the php.ini max. file upload limit on my page?
To change the limitCode:<?php echo ini_get('upload_max_filesize'); ?>
create a php.ini file in the root folder and add a line in it :hope that helped.Code:memory_limit=40
Cheers
Bob