ページネーションを実行しようとしていますが、機能していますが、編集機能と削除機能が機能しなくなった理由がわかりません。これは私のコントローラーです
function view($page=0){
$config = array();
$config["base_url"] = base_url() . "index.php/employee/view";
$config["total_rows"] = $this->employee_model->getTotalEmployeeCount();
$config["per_page"] =5;
$this->pagination->initialize($config);
$this->data["results"] = $this->employee_model->getEmployee($config["per_page"], $page);
$this->data["links"] = $this->pagination->create_links();
$this->data['title'] = 'Payroll System';
$this->data['message'] = $this->session->flashdata('message');
$this->load->view('employee_view', $this->data);
}
これは私のモデルです
function getTotalEmployeeCount() {
return $this->db->count_all('user');
}
function getEmployee($limit, $start) {
$this->db->limit($limit, $start);
$this->db->select('id,firstname,lastname,presentadress,contactno,dateofjoining,email');
$qry= $this->db->get('user');
return $qry->result_array();
}
これが私の見解です
<?php
foreach ($results as $m){
?>
<tr style="text-align:center;">
<td><?php echo $m['id'] ?></td>
<td><?php echo $m['firstname'] ?></td>
<td><?php echo $m['lastname'] ?></td>
<td><?php echo $m['dateofjoining'] ?></td>
<td><?php echo $m['presentadress'] ?></td>
<td><?php echo $m['contactno'] ?></td>
<td><?php echo $m['email'] ?></td>
<td><a href="<?php echo site_url('employee/edit_employee/'.$m->id) ?>" class="btn btn-primary btn-mini">Edit</a></td>
<td>
<?php
echo anchor('employee/delete_employee/'.$m->id, 'Delete', array('onClick' => "return confirm('Are you sure you want to delete?')"));
?>
</td>
<?php
}
?>
<?php echo $this->pagination->create_links()?>
私のモデルでは、result_array を結果に変更すると、「 stdClass型のオブジェクトを配列として使用できません」というエラーが発生します。非オブジェクトのプロパティ」 . このエラーを終わらせるのを手伝ってください