Is it possible to upload file types like “.psd”, “.eps”, “.zip”, “.txt”, and so on..?
And, can anyone recommend a PHP based upload handler script which also allows uploads of all kind of files?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
An
<input type='file' />element on submit will allow uploading of all file types that I am aware of. The data will exist in your$_FILESsuper global array in PHP.You likely will have some restrictions in your
php.inifile, especially regarding file size.