附加url的多个mysql查询

hivapdat  于 2021-06-20  发布在  Mysql
关注(0)|答案(0)|浏览(187)

我写了一个脚本,将搜索和显示结果的基础上,多个输入条件,目前只有两个。一个搜索条件是数据库中的哪个表,第二个条件是特定列中美元金额的比较。
我想首先选择要从中提取的表,有三种选择;科林,达拉斯,塔兰特。到目前为止,我一直在用单选按钮写作

<input type="radio" id="mychoice" name="Collincountychoice" value="collincounty" >Collin County<br>
<input type="radio" id="mychoice" name="Dallacountychoice" value="dallascounty">Dallas County<br>
<input type="radio" id="mychoice" name="Tarrantcountychoice" value="tarrantcounty">Tarrant County<br>

我可以使用get方法提交它,它显示表中总行数的所需结果。

www.example.com/search.php?data_table=collincounty

然后,我想按美元金额排序,以缩小使用文本框提交该值时返回的列数。

<input type="text" name="dollar" id="dollar" value="" />

当我以按钮的形式提交这个值时,它会从url中删除“datatable”并传递这个值;

www.example.com/search.php?dollar=500

我需要建立在以前的结果和通过类似的东西;

www.example.com/search.php?data_table=collincounty&dollar=500

我肯定我错过了一些简单的东西,提前谢谢。
更新

<form id="form1" name="form1" method="get" action="">
<label>
<input type="radio" id="Collinchoice" name="data_table" 
value="collincounty" >Collin County<br>
<input type="radio" id="Dallaschoice" name="data_table" 
value="dallascounty" >Dallas County<br>
<input type="radio" id="Tarrantchoice" name="data_table" 
value="tarrantcounty">Tarrant County<br>
<label>Dollar Amount:</label>
<input type="text" name="dollar" id="dollar" value="<?php echo 
stripcslashes($_REQUEST["dollar"]); ?>" />

<input type="submit" name="button" id="button" value="Filter" />
</form>

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题