我想创建多个搜索,其中语句 $where_search 是来自帖子表单的多个条件。但是当我使用此代码“.where_search”时仍然出错。在 where 条件下使用 mysql_num_rows 进行分页
$tampil2 = mysql_query("SELECT * FROM bb where ".$where_search." and kd_kelompok='2' and kd_komoditi='11' and nm_sebutan IS NOT NULL " );
这是完整的代码。
$where_search = "kd_pok='2' and kd_komoditi='11' ";
if (isset($_POST['lakpus']))
{
if (empty($_POST['lakpus']))
{
}
else
{
if (empty($where_search))
{
$where_search .= "lakpus = '$lakpus' ";
}
else
{
$where_search .= "AND lakpus = '$lakpus' ";
}
}
}
if (isset($_POST['kd_por']))
{
$kd_por = $_POST['kd_por'] ;
if (empty($_POST['kd_por']))
{
}
else
{
if (empty($where_search))
{
$where_search .= "kd_por = '$kd_por' ";
}
else
{
$where_search .= "AND tab1.kd_por = '$kd_por' ";
}
}
}
$max=15;
$tampil2 = mysql_query("SELECT * FROM bb where ".$where_search." and kd_kelompok='2' and kd_komoditi='11' and nm_sebutan IS NOT NULL " );
$jml = mysql_num_rows($tampil2);
$jmlhal = ceil($jml/$max);