is anybody upload more than 100mb file using PHP upload
script in ONLINE SERVER (using .htaccess file)? please give
some idea...
Answer Posted / chandresh
1. Put the following code in side the .htaccess file and
save it.
php_value upload_max_filesize 20M
php_value post_max_size 20M
php_value max_execution_time 200
php_value max_input_time 200
2. or use the ini_set() function for setting
ini_set('post_max_size','9M')
now post_max_size variable is 9 MB set.
| Is This Answer Correct ? | 21 Yes | 4 No |
Post New Answer View All Answers
what does this symbol mean in php?
How many types of functions are there in php?
What is strcmp?
What are php loops?
Tell me how can I display text with a php script?
Is java is better than php?
How to upload file in php?
How to find a specific value in an array?
How to calculate the length of a string?
Explain me soundex() and metaphone()?
How to remove a file?
How to display your correct URL of the current web page?
What is difference between single quotes and double quotes in php?
Who is known as the father of php?
What is cookie in php with example?