codeigniter页面上的活动记录

时间:2015-04-21 07:41:06

标签: codeigniter

我想从视图页面上的数据库打印一个表格,其中条件,意思是我想要班级为7的学生的打印表并且支付费用状态。

我们是怎么做到的?

我试了但不行:

<?php 
                $students   =   $this->db->get_where('student' , array('status' => paid,'class_id'=>7))->result_array();
                foreach($students as $row):?>

1 个答案:

答案 0 :(得分:1)

我已经使用此代码为您找到答案请查看并试用

$query = $this->db->get_where('tasks', array('description' => 7,'status' => 1));
        echo "<pre>";
        print_r($query->result_array());
  

更改你的数组元素,因为付费是一个必须在quots中的字符串

array('description' => "paid",'class_id'=>7)