Skip to content
Advertisement

How to code for file upload with use defined extension using php

i have a main.php file ,in that file i have upload file code

JavaScript

after clicking on submit button it will redirect to mainresult.php in this page i write the logic to save the uploaded file in uploads/ directory and i created this directory where my php files placed.

i kept echo ‘s to debug it from this condition

if(in_array($filetype, $allowed)){ from this condition echo’s not printed

i tried this please help me with this .

JavaScript

my file extension is .key (demo.key)

Thank you

Advertisement

Answer

Have you tried echoing out what the contents of $filetype is?

$_FILES["uploadfile"]["type"] will likely contain a mimetype like [type] => text/plain or “application/x-pem-file“.

If you echo out filetype you can see what the mimetype is of the file you are willing to allow.

Be aware that php is not always able to tell the correct mimetype.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement