You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
183 B

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