Skip to content

Instantly share code, notes, and snippets.

@skeggse
Created October 25, 2012 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skeggse/3954488 to your computer and use it in GitHub Desktop.
Save skeggse/3954488 to your computer and use it in GitHub Desktop.
Example JSON Output
<?php
header("content-type: application/json");
$output = array("classes" => array(0, 1, 2, 3, 4), "rooms" => array(0, 1, 2, 3, 4));
echo json_encode($output); // {"classes":[0,1,2,3,4],"rooms":[0,1,2,3,4]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment