cant upload file larger than 2MB in PHP?

  • Thread starter Thread starter vaibhav c
  • Start date Start date
V

vaibhav c

Guest
i'm not able to upload the larger file through the php code can u plz suggest me any solution for it?
 
Include this to your php code. This would programmatically set changes to ini file

<?php
ini_set("post_max_size","38M");
ini_set("session.gc_maxlifetime","10800");
ini_set("upload_max_filesize", "100M");

?>
 
Back
Top