我在我的 wordpress 安装中有一个存储大量数据的表。我有一个 php 文件,可以在表上运行查询并返回经过精心筛选的行选择。我的 wordpress 页面上有一个表单,允许用户选择与 mysql 查询变量相对应的各种值。如何让 php 文件使用表单中选择的值?
我的表格使用以下内容:
<input type="text" name="max_price" />
<input type="text" name="loan_fraction" />
<input type="text" name="interest_rate" />
<input type="text" list="state" />
我真的不知道我需要什么样的提交操作,但我希望它将这些值传递给我的 php 使用它们,例如:
$values = mysql_query("select
b.listing, b.bed, b.bath, b.type, b.address, b.postcode, b.state, b.price, avg_rent
from
buy_items b
join
(SELECT
bed, bath, type, suburb, postcode, AVG(price) as avg_rent
FROM
rent_items
GROUP BY bed, bath , type , suburb , postcode) a ON a.bed = b.bed and a.bath = b.bath
and a.suburb = b.suburb
and a.postcode = b.postcode
and a.type = b.type
where
(b.price * some_number) < a.avg_rent
and b.price > 50000
and price < max_price
and b.state = state");
其中 some_number 是 loan_fraction 和 interest_rate 的函数。
谢谢 :)