我试图在第二个表单操作不起作用的表单中调用一个表单。它没有解析。我的示例程序有一个附加到我的提交按钮的主表单,内部表单是一个下载按钮。
更新代码:
<?php
$fullPath = "staff.doc";
<form id="Staff" name="Staff" method="post" action="download_preview.php">
echo "<input type=\"hidden\" name=\"fullPath\" value=\"$fullPath\"/>";
echo "<input type=\"submit\" name=\"submit\" value=\"Download\"/>";
echo "<input type=\"submit\" id=\"Submit\" name=\"Submit\" value\="Submit\"/>";
echo "</form>";
<?php
switch($_POST['submit'])
{
case "Submit":
break;
case "Download":
$fullPath = $_POST['fullPath'];
// download file
opendir("$fullPath");
break;
default:
}
?>
我已经更新了多处理程序方法。但是我仍然无法调用下载路径。下载代码以前使用单个表单。