Codeigniter Active Record (and not only that) peculiar problem on some server
问题 I'm experiencing a strange problem while using CodeIgniter's Active Record class ( looks like not only that, check update at bottom of question ), and that happens only on some servers (belonging to the same provider). What happens is that the query is run only "partially", meaning that results are retrieved from mysql database, but any where or join or select clause is ignored. A simple example: $this->db->select('title,intro'); $this->db->from('content'); $this->db->where('published','1');