hello guru
how can i redirect the page after force download??
i tried this
$path="../memerprofile/csv/members/";
$file_n = "members.csv";
$file_info = filesize($path.$file_n);
header("Content-Type: ".$file_info['type']."");
header("Content-Disposition: attachment; filename=".$file_n."");
readfile($path.$file_n);