vis - 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 vis.php

  1. <meta charset="utf-8">
  2. <?php
  3.     error_reporting(E_ALL);
  4.     mb_internal_encoding("UTF-8");
  5.     
  6.     var_dump($_REQUEST);
  7. ?>
  8.  
  9. <form action="" method="GET">
  10.     <input type="checkbox" name="text">
  11.     <input  name="date">
  12.     <input type="submit" value="start">
  13. </form>
File Description
  • vis
  • PHP Code
  • 19 Jan-2022
  • 268 Bytes
You can Share it: