私が正しく理解していれば、これはあなたが求めていることをするはずです:
まず、HTML を次のように更新します。
<form method="POST" action="dl-file.php">
<select id="filename" name="filename">
<option value="file1.pdf">File 1</option>
<option value="file2.pdf">File 2</option>
<option value="file3.pdf">File 3</option>
<option value="file4.pdf">File 4</option>
<option value="file5.pdf">File 5</option>
</select>
<input type="submit" value="Download" class="grey-btn" />
</form>
次に、HTML ファイルと同じディレクトリに新しいファイルを作成し、それをdl-file.phpと呼び、これをその中に入れます。
<?php
// Put any files you don't want the user to download here
$exclude_files = array('.htaccess', '.DS_STORE', '.htpasswd');
// full path to the download directory
$download_directory = 'C:\xampp\htdocs\test\filedlselect/downloads/';
$file_to_download = filter_input(INPUT_POST, 'filename', FILTER_SANITIZE_STRING);
$full_path = $download_directory . $file_to_download;
if (!in_array($file_to_download, $exclude_files) &&
file_exists( $full_path ) && is_readable( $full_path )) {
header('Pragma: public');
header('Expires: 0');
header('Cache-control: must-revalidate, post-check=0, pre-check=0');
header('Last-modified: ' . gmdate('D, d M Y H:i:s', filemtime($full_path)) . 'GMT');
header('Cache-control: private', false);
header('Content-type: application/force-download');
header('Content-disposition: attachment; filename="' . basename($full_path) . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($full_path));
header('Connection: close');
readfile($full_path);
exit;
} else {
die('invalid file');
}
?>
3 番目に、フォルダが$download_directory
ハード ドライブ上の正確な場所を含むように編集します。必要に応じて、ファイルを配列/downloads/
に追加できます。$exclude_files