how to upload 100mb file using .htaccess..
Answers were Sorted based on User's Feedback
Answer / rakesh kumar nautiyal
define the max file size in .htaccess file as 100MB
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / danish
you have to overwrite php.ini's s settings in .htacess
upload_max_filesize 100M
php_value post_max_size 100M
php_value upload_max_filesize 100M
| Is This Answer Correct ? | 4 Yes | 3 No |
How can you declare the array in php?
What are the disadvantages of php?
Which MySQL function would you use to select a database?
Explain what is the difference between mysql_fetch_array() and mysql_fetch_assoc()?
we store and display scores of users in different games. In MySQL, records are stored as tuples (user-id, game-id, score). Now we need to support ranks of users, i.e., each user should be informed of his current rank in the community. The challenge is to come up with the best way to store the data in MySQL so that the requirements are efficiently met.
What language is similar to php?
How are php sessions stored?
What is regular expression in javascript?
How long will it take to learn php?
Tell me what are sql injections, how do you prevent them and what are the best practices?
Which is useful for method overloading?
What is $_ get in php?