todo_api/client.html
2015-02-17 22:47:38 +01:00

15 lines
441 B
HTML

<html>
<head>
<script src="mysql_crud_api_transform.js"></script>
<script>
function callback(jsonObject) {
jsonObject = mysql_crud_api_transform(jsonObject);
document.getElementById('output').innerHTML = JSON.stringify(jsonObject, undefined, 4);
}
</script>
<script src="http://localhost/api.php/posts,categories,tags,comments?filter=id:1&callback=callback" defer="defer"></script>
</head>
<body>
<pre id="output"></pre>
</body>
</html>