Skip to content

Instantly share code, notes, and snippets.

@Menencia
Created August 17, 2012 09:54
Show Gist options
  • Save Menencia/3377568 to your computer and use it in GitHub Desktop.
Save Menencia/3377568 to your computer and use it in GitHub Desktop.
<?php
// Data to send
$res = array('success' => TRUE);
// Disable auto_render
$this->auto_render = FALSE;
// Return JSON
$this->response
->headers(array('content-type' => 'application/json'))
->body(json_encode($res));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment