Download and Redirection
I need download a file and then redirect to other page.
Currently, i try to do this with:
function open_download_dialog_box($file, $path) {
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename = ' . $file);
readfile($path);
}
open_download_dialog_box('test.rar', 'files/test.rar');
header('Location: http://www.google.com.ar');
If anybody knows how i can do this, i aprecciate your help.
.:: wolverine4277 ::.
|