多个Mysql查询附加网址

时间:2018-08-03 14:45:53

标签: javascript php mysql mysqli onclick

我正在编写一个脚本,该脚本将基于多个输入条件(目前只有两个)搜索和显示结果。一个搜索条件是数据库中的哪个表,第二个条件是特定列中美元金额的比较。

我想首先选择要从中提取的表,共有三种选择;科林,达拉斯,塔兰特。到目前为止,我已经使用单选按钮编写了

<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="" />

当我使用表单中的按钮提交此值时,它会从网址中删除“ data_table”并传递该值;

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>

0 个答案:

没有答案