I want to upload files of around 150 MB using PHP and Apache server. With my code i can upload upto 5MB
If you are using a shared server and want to upload large files, create a php.ini file and write the following code into it and put it in the folder where you are uploading the files, i.e. the destination of your uploaded files.
upload_max_filesize = 150M
post_max_size = 150M
memory_limit = 512M
max_execution_time = 1200