mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
17 lines
No EOL
183 B
PHP
17 lines
No EOL
183 B
PHP
<?
|
|
if (!isset($code)) {
|
|
exit("No code submitted.");
|
|
}
|
|
?>
|
|
<html>
|
|
<body>
|
|
Executing:<br>
|
|
<?
|
|
highlight_string("<?php \n$code\n?>");
|
|
?>
|
|
<hr width="40%">
|
|
<?
|
|
eval($code);
|
|
?>
|
|
</body>
|
|
</html>
|