alors pour $_FILES['fichier']['type'] ca te renvoit le type mime du fichier
voici une petite liste :
$allowed_types_files = array(
"application/x-gzip-compressed",
"application/x-zip-compressed" ,
"application/x-tar",
"image/bmp",
"image/gif",
"image/pjpeg",
"image/jpeg",
"text/richtext",
"text/plain",
"application/pdf",
"application/msword",
);
apres tu fais ca :
if (!in_array($_FILES['fichier']['type'], $allowed_types))
die ('type mime incorrect');
et voila
---------------
N'oubliez pas de mettre [RESOLU] dans le titre quand c'est fini - Pour poster vos sources : http://paste.clicksources.com/