gpt4 book ai didi

php - 使用 php 的多查询搜索表单

转载 作者:行者123 更新时间:2023-11-29 03:34:08 26 4
gpt4 key购买 nike

我有一个搜索表单,用于根据输入的日期获取记录,它工作得很好,但现在我正在尝试实现一个功能,我可以在其中从特定日期搜索到另一个日期,我该怎么做。

这是我试过的

<form class="form-horizontal" action="date_policy.php" method="post" name="form1" id="form1"> 
<div class="control-group">
<label class="control-label" for="input Date"><span class="asasa">*</span> Date:</label>
<div class="controls">
<input type="text" name="date" value="" size="32" id="input insured Date" placeholder="e.g 12-5-2014" />

</div>
</div>

<p align="center">
<input type="submit" class="btn btn-mini btn-primary" value="Search" /></p>
</form>

和我的查询片段

mysql_select_db($database_kbl, $kbl);
$query_cert = sprintf("SELECT * FROM transactions WHERE Date = %s", GetSQLValueString($colname_cert, "text"));
$cert = mysql_query($query_cert, $kbl) or die(mysql_error());
$row_cert = mysql_fetch_assoc($cert);
$totalRows_cert = mysql_num_rows($cert);

最佳答案

在您的 SELECT 语句中使用 BETWEEN 怎么样?像这样:

$query_cert = sprintf("SELECT * FROM transactions WHERE Date BETWEEN %s AND %s", GetSQLValueString($colname_cert, "text"), GetSQLValueString($mySecondDateField, "text"));

关于php - 使用 php 的多查询搜索表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25847682/

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