我正在wordpress模板中开发一个按字母顺序排列的筛选表。但过滤器不工作可能是因为下面的代码。
if($char)
{
$results = $wpdb->get_results( "SELECT * FROM teacher_directory where Name LIKE \'$char%\'", ARRAY_A );
$count = $results->num_rows;
if($count >= 1)
{
//Printing the table here
}
在上述代码中
$char
正在接收信件,但列表为空。
最合适的回答,由SO网友:Rishabh 整理而成
好的,我得到答案了
if($char)
{
$results = $wpdb->get_results( "SELECT * FROM teacher_directory where Name LIKE \'$char%\'", ARRAY_A );
if(!empty($results))
{
//Printing the table here
}
}