This commit is contained in:
stubbfel
2013-07-10 00:29:59 +02:00
commit f1dc9a54c8
8 changed files with 7947 additions and 0 deletions

16
index.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
include_once 'View.php';
$sourceString = file_get_contents("mr.json");
//echo $sourceString;
$source = json_decode($sourceString, true);
foreach ($source as $key => $view) {
if ($key != "-1") {
$viewObj = new View($view, $key);
echo $viewObj->toHTML();
echo "<br>";
}
}
?>