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 +
$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 +