Excelファイルをダウンロードできません。ファイルをダウンロードしますが、コンテンツがなく、サイズが0kbです。これは私のhtmlコードです。
<h5 style="color: red;">
<a href="2.php?file=files/Battle_Entry_form.xls" class="links">
Click here to download A Registration form
</a>
</h5> <br />
2.php (これは、Excel ファイルをダウンロードするための私の php コードです)
<?php
if(isset($_GET['file'])){
$filename = $_GET['file'];
header('Content-type: application/vnd.ms-excel');
header('Content-Disposition: attachment; filename="'.$filename.'"');
readfile("http://www.caledtech.com/batllewebsite/".$filename);
exit;
}
?>
私のコードに欠けているものはありますか?