Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save samfcmc/4d9ad2d82b3d5d540a736f6899440560 to your computer and use it in GitHub Desktop.
Save samfcmc/4d9ad2d82b3d5d540a736f6899440560 to your computer and use it in GitHub Desktop.
<?php
$data = getDataFromDatabase();
// Let's output the $data variable's content
var_dump($data);
// Let's output the result of calling json_encode
$encoded = json_encode($data);
var_dump($encoded);
echo $encoded;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment