function get_entry_count($pagename) {
global $wpdb;
$count = $wpdb->get_results("SELECT COUNT( * ) FROM wp_fpc_rg_lead_detail WHERE form_id =12 AND field_number =5 AND value = '$pagename'" );
return $count[0]->count;
}
$numofpeople = get_entry_count($post->post_title);
echo "$numofpeople people filled out the form";
我正在尝试运行上面的查询并输出匹配的记录数。如果我添加:
print_r($count);
在返回命令之上,我得到了这个:
Array ( [0] => stdClass Object ( [COUNT( * )] => 7 ) )
有7条记录;并且返回值应该是 7。
但是,返回的值( $count[0]->count; )似乎为空。我敢肯定这是愚蠢的,但我就是无法让它工作。