php - upload only txt files -
how check .txt files uploaded server , not other files in php.
you can test filetype:
if ($_files['file']['type'] == 'text/plain') // file txt
also, can verify mime-type of file using function mime_content_type.
how check .txt files uploaded server , not other files in php.
you can test filetype:
if ($_files['file']['type'] == 'text/plain') // file txt
also, can verify mime-type of file using function mime_content_type.
Comments
Post a Comment