我正在设计带有下拉列表和按钮的简单 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>