123 - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of 123.php

  1. <!DOCTYPE html>
  2. <html>
  3.     <meta charset="utf-8">
  4.     <head>
  5.         <title>First</title>
  6.     </head>
  7.     <body>
  8.         <?php
  9.         error_reporting(E_ALL);
  10.         ini_set('display_errors', 'on');
  11.         echo 'First';
  12.         ?>
  13.     </body>
  14. </html>
File Description
  • 123
  • PHP Code
  • 29 Aug-2023
  • 252 Bytes
You can Share it: