What changes to done in PHP.ini file for file uploading?
Answers were Sorted based on User's Feedback
Answer / devendrarjadav
In PHP.ini you must change the following directives to
allow the http file upload.
1.file_uploads : make this directive as TRUE, yes, on or 1.
2.upload_tmp_dir : Specify the temporary directory used for
storing files when doing file upload.
3.upload_max_filesize : Specify the maximum size of an
uploaded file.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / palaniraja.wordpress.com
post_max_size also should be greater than upload_max_filesize
| Is This Answer Correct ? | 5 Yes | 1 No |
Write down the code for save an uploaded file using php?
Tell me what does the php error 'parse error in php - unexpected t_variable at line x' means?
Is it worth learning php in 2019?
How to check a variable is an array or not in php?
What is overloading and overriding in oop?
What function should you use to join array elements with a glue string?
What is difference between rest api and restful api?
Explain PHP?
What is the use of "enctype" attribute in a html form?
Where is my php ini file?
Tell me how to create a text file in php?
Explain what is the difference between mysql_fetch_array() and mysql_fetch_assoc()?