我正在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
正在接收信件,但列表为空。