public function display( $date )
{
$this->db->select('*');
$this->db->from('event');
$this->db->where('start_date','$date');
$res = $this->db->get()->result_array();
return $res;
}
}
我在codeigniter中使用此代码从我的数据库中获取数据。但是我收到错误消息“从sql中的字符串转换日期和/或时间时转换失败”。请大家帮忙。