Hi All,
I have problem with outputting file to client download. My script as folow:
$df_path = $dir."/".$downfile;
$fsize = filesize($df_path);
header("Content-type: application/wsl");
header("Content-Disposition: attachment; filename=$downfile");
header("Content-Length: ".$fsize);
$fp = readfile($df_path);
$df_path is path of the file i want to output. In IE 5.o it OK, but in IE 6.0 after user get a file, he can't not click any link in my page.
Please give me a advice !
Thank you.