bloopletech / json2html

JSON 2 HTML offers an easy way to visualize a string of JSON text.

This URL has Read+Write access

Brenton Fletcher (author)
Sat Jun 13 05:47:30 -0700 2009
json2html / get.php
100755 6 lines (6 sloc) 0.152 kb
1
2
3
4
5
6
<?
$prefix = substr($_GET["url"], 0, 4);
if($prefix != "http") die();
echo file_get_contents($_GET["url"]);
//header("Location: ".$_GET["url"]);
?>