Right way of JSON output in CodeIgniter 3.
Source code viewer
class MyClass extends CI_Controller { ... public function myfunction() { $this->output ->set_status_header(200) ->set_content_type('application/json') } }Programming Language: PHP
Right way of JSON output in CodeIgniter 3.
Source code viewer
class MyClass extends CI_Controller { ... public function myfunction() { $this->output ->set_status_header(200) ->set_content_type('application/json') } }Programming Language: PHP