[PHP-users 25911] ファイルをダウンロードして、さらにページを切り替えたい
遠藤 俊裕
endo_t @ nifty.com
2005年 6月 27日 (月) 11:12:29 JST
遠藤と申します。
色々考えてるんですが、初心者と言うこともあり、なかなか良い案が
思い浮かびません。どなたかお助け下さい。
現在 a.html にて <FORM> タグよりファイルをダウンロードする php
を呼び出しております。
<form method="post" action="download.php">
<input type="submit" name="download" value="取る">
</form>
こんな感じです。
で、download.php では
header("Content-Disposition: attachment; filename=$path_file);
header("Content-Length: ".$content_length);
header("Content-Type: application/octet-stream");
if (!readfile($path_file)) {
die("Cannot read the file(".$path_file.")");
}
こんな感じでファイルをダウンロードさせます。
このダウンロードが終わるか、あるいは終わらなくても index.php に
画面を切り替えたいのですが、どうすればいいのでしょうか?
何か方法がありましたら、お教え下さいm(_ _)m
--
遠藤俊裕 <endo_t @ nifty.com>
PHP-users メーリングリストの案内