我通过textarea一次插入10到11条记录,我希望它们只显示那些记录而不是所有其他记录。 我正在使用codeigniter。所以我需要在codeigniter中查询。
$this->db->select("*");
$this->db->from('try2check_cardinfo');
$this->db->limit(1);
$this->db->order_by("id","DESC");
$q =$this->db->get();
echo "<pre>";
$r = $q->result_array();
$iddd = $r[0]['id'];
$this->db->select("*");
$this->db->from("try2check_cardinfo");
// $this->db->limit(3);
$this->db->order_by("id","desc");
$this->db->where('id >',$iddd);
$query = $this->db->get();
$result = $query->result();
return $result;