How to get all data from database in code Igniter

function get_all_students()
{
$query = $this->db->get(‘students’);
if ($query->num_rows() > 0)
{
$result = $query->result_array();
return $result;
}
else
{
return ‘0’;
}
}

// students is the table name of database

For details you may visit  http://codeigniter.com/user_guide/database/active_record.html

  1. No trackbacks yet.

Leave a comment