Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

File Types

Status
Not open for further replies.

TheSponge

Technical User
Jul 2, 2003
442
GB
I have an uploader which works great with the following file types:

$allowed_types = array(
"image/gif" => "gif",
"image/pjpeg" => "jpg",
"image/jpg" => "jpg",
"image/jpeg" => "jpg",

I want to add PDF,HTML,DOC and TXT

but im not sure of the type?

I tried

"text/txt" => "txt",

but no luck, can anyone help?

Thanks


A+,Network +
 
Code:
"text/html" => "html", 
"text/html" => "htm", 
"application/msword" => "doc",
"text/html" => "txt"
I am not sure abt PDF files







--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top