mirror of
https://github.com/wassname/phaser.git
synced 2026-06-27 16:10:15 +08:00
28 lines
461 B
PHP
28 lines
461 B
PHP
<?php
|
|
require('funcs.php');
|
|
|
|
getFile();
|
|
?>
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>phaser - <?php echo $title?></title>
|
|
<?php
|
|
require('phaser-debug-js.php');
|
|
?>
|
|
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
|
|
<script src="<?php echo $filename?>"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="phaser-example"></div>
|
|
|
|
<pre class="prettyprint">
|
|
<?php
|
|
echo $code;
|
|
?>
|
|
</pre>
|
|
|
|
</body>
|
|
</html>
|