ドロップダウンリストとボタンを備えたシンプルなHTMLをデザインしています。
選択したドロップダウンアイテムをphp変数に取得する方法を知りたいです。私はphp-html埋め込みコードを書いています。php変数で特定の値を取得する方法について混乱しています。また、その特定のアイテムを選択した後、ファイルをダウンロードする方法を知りたいです。すでにダウンロードファイルを作成しましたが、選択したドロップダウンアイテムからそれらを呼び出す方法がわかりません。
どんな助けでもありがたいです。ありがとうございました。
私が試しているphp-htmlコードを貼り付けています:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Get All Reports</title>
</head>
<body>
<center>
<div>
<form action="">
<table>
<tr><td>
<select onchange="ReportList(this.form,0)">
<option value="SubscriptionReport.php" >Subscription Report
<option value="DownloadHistoryReport.php">DownloadHistory Report
<option value="AppEventReport.php">AppEvent Report
</select>
</td></tr>
<tr><td>
<button name="isSubmit">Download</button>
</td></tr>
</table>
</form>
</div>
</center>
</body>
</html>