Saturday, 19 August 2017

Convert Codeigniter data to json

Here is the code for Convert Codeigniter data to json:

public function lastActivity()
{
    header("Content-Type: application/json");
    $this->db->select('*');
    $this->db->from('table_name');
    $query = $this->db->get();

    return json_encode($query->result());
}

No comments:

Post a Comment

Google Map Filter Api Example

Here is Google Map Filter Api Example: