View Single Post
  #2 (permalink)  
Old 06-06-2007, 05:20 AM
Felissa Felissa is offline
Member
 
Join Date: Jun 2007
Posts: 95
Felissa is on a distinguished road
RE: File Upload - Single to allow the search of .txt files
Code:
Tag <INPUT> - http://www.w3schools.com/tags/tag_input.asp
Example:

Code:
<input type="file" name="file" accept="list_of_mime_types">
list_of_mime_types : A comma-separated list of MIME types that indicates the MIME type of the file transfer

Code:
MIME Types - http://www.w3schools.com/media/media_mimeref.asp
Example:

*.txt => text/plain

Felissa
Reply With Quote