php-src/tests/run.php

17 lines
183 B
PHP
Raw Normal View History

<?
if (!isset($code)) {
exit("No code submitted.");
}
?>
<html>
<body>
Executing:<br>
<?
highlight_string("<?php \n$code\n?>");
?>
<hr width="40%">
<?
eval($code);
?>
</body>
</html>