summaryrefslogtreecommitdiff
path: root/tests/run.php
blob: a6792b5af72c720eb52f6e028b13f595e376874f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?
if (!isset($code)) {
	exit("No code submitted.");
}
?>
<html>
<body>
Executing:<br>
<?
highlight_string("<?php \n$code\n?>");
?>
<hr width="40%">
<?
eval($code);
?>
</body>
</html>