What is the maximum size of a file that can be uploaded
using PHP and how can we change this?
Answers were Sorted based on User's Feedback
Answer / amit aggarwal
By default it is 2Mb. But you can change this limitation in
php.ini file.There is a variable 'upload_max_filesize'
| Is This Answer Correct ? | 53 Yes | 1 No |
For the above question few are mentioned 2MB is default and
if we want to change need to change in the variable
'upload_max_filesize at php.ini file, so when i have seen in
that file it is mentioned 128M means how much MB is default
upload_max_filesize = 128M
| Is This Answer Correct ? | 1 Yes | 4 No |
How can you insert javascript in php code?
What is the method to execute a php script from the command line?
What are session variables in php?
What are php parameters?
Is laravel an oop?
What software is required for php?
Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.
Is md5() is breakable if yes than how?
How to find the position of the first occurrence of a substring in a string?
List out some tools through which we can draw E-R diagrams for mysql.
How to remove white spaces from the beginning and/or the end of a string in php?
what is constructor in a class, how it is work, how it is call?