Hi
I have a bug, and i dont know how to correct or dodge it.
The problem is, that i have a download.php file, which reading files in, and force the browser to download em, with Content-Disposition attachment. But when i try to download the file in internet explorer it put this -> "[1]" before the first dot in the filename, but if there is just one dot before the extension it doesnt doing it.
eg :
ZZ.001.1.doc will become ZZ[1].001.1.doc if i want to download it.
Here is the code, but i think the problem is not in it :
$filename="ZZ".$type.".".$prefix.".".$qu.".".$ver.".doc";
Header("Content-type: application/msword");
Header("Content-Disposition: attachment; filename=$filename;");
readfile("$CONFIG[path_upload]/".$frm_id."_".$last);
have anybody seen anything like this before? Netscape isnt doing it.
Help pls.
thx