gpt4 book ai didi

javascript - 在表单之外使用 PHP 的第二个提交按钮

转载 作者:行者123 更新时间:2023-12-03 12:16:29 25 4
gpt4 key购买 nike

我的表单包含 2 个必填字段和 1 个可选字段。

我想在此表单之外添加一个提交按钮,这样当我们有folder_name的值并且您单击它时,它就会运行php并搜索该服务器下的所有文件:

<form name="runConsultation" method="post" action="">   
<input type="text" name="folder_name">
<select name="files" size="3">
<?php
// pupulate the list with values found outside the form
?>
<select>
<select name="category">
<option value="">Select...</option>
<option value="a">A</option>
<option value="b">B</option>
</select>
<input type="submit" name="run-consultation" value="RUN CONSULTATION">
</form>


<input type="submit" name="find-files" value="FIND FILES">

我的问题是,我不知道如何在不使用 2 个表单的情况下做到这一点。

如果我添加 2 个表单,我需要将folder_name 与字段分开,当我运行咨询时,我将失去对folder_name 的访问权限。

有人可以帮忙吗?预先感谢您。

<小时/>

示例:

<form name="fileSearch" method="post" action="" >
<input type="text" name="folder_nr">
<input type="submit" value="Search For Files" name="search-folder">
</form>


<form name="runConsultation" method="post" action="">
<select name="files" size="3">
<?php
// building my list with the files found using the first form
?>
...
<input type="submit" name="run-consultation" value="Run Consultation">
</form>

当我运行 search-folder 时,folder_number 消失了。

最佳答案

只需将提交按钮放在表单中,然后检查是否单击了该按钮

if (isset($_POST['find-files']) && $_POST['find-files']) {
// find files..
}
else
{
// run consulation
}

关于javascript - 在表单之外使用 PHP 的第二个提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24675172/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com