Skip to content

Instantly share code, notes, and snippets.

@khanhtdbse
Created August 28, 2017 06:20
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 khanhtdbse/79de47cd99c18422cf7f2f519c85c617 to your computer and use it in GitHub Desktop.
Save khanhtdbse/79de47cd99c18422cf7f2f519c85c617 to your computer and use it in GitHub Desktop.
<?php
header('Content-type: application/json');
$id = $_GET['id'];
echo json_encode([
'id' => $id,
'content' => "Some content in article #{$id} that is work offline",
'title' => "The offline title #{$id}"
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment