0

我在我的 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 的函数。

谢谢 :)

4

1 回答 1

1

只需将操作设置为指向 php 文件,并将字段名称分配给 php 中的变量似乎就可以了:

在 HTML 中:

<td>
  <form id="buy_prop" action="http://****_data.php" method="post">How much are you willing to spend?
</td>
<td>
    <input type="text" name="max_price" id="max_price">
</td>

在 PHP 中

$max_price = $_POST["max_price"];    
$loan_fraction = $_POST["loan_fraction"];
etc etc
于 2013-11-18T14:21:06.123 回答