mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
f1dac01f11
- Added .reg file for PWS setup - Reordered some stuff in phpinfo()
17 lines
183 B
PHP
17 lines
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>
|