where to change in php.ini file for file uploading?
Answer / debraj roy
You can call the phpinfo() function to find the location of
your php.ini file, it will also tell you the current values
for the following settings that we need to modify
1.file_uploads
2.upload_max_filesize
3.max_input_time
4.memory_limit
5.max_execution_time
6.post_max_size
| Is This Answer Correct ? | 16 Yes | 1 No |
does current version of mysql (myisam) supports foreign keys ?
Which of the following represents the proper way to set a session variable? Answer: a. $_SESSION['foo'] = 'bar'; b. session_start(); c. session_set_save_handler ('myopen', 'myclose', 'myread', 'mywrite', 'mydelete', 'mygarbage'); d. $foo = $_SESSION['foo']; 2.When administering MySQL, you should make the data directory accessible via the operating system 3.which statement can be used to determine how the optimizer resolves a query
Tell me is it possible to protect special characters in a query string?
Is the cookies are available on cross domain?
where do we use htaccess?
How to download files from an external server with code in php?
What is a query give example?
What are form input html tags?
What is the difference between substr() and strstr()?
Is php good for career?
How to find the position of the first occurrence of a substring in a string?
What are the different functions in sorting an array?