escape output - 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 escape output.php

  1. <?php
  2.  
  3. $string1 = "Test O'Test";
  4. $string2 = "Test O \"Test\"";
  5.         
  6.  
  7. print '<input value="' . htmlspecialchars($string1, ENT_QUOTES) . '" />';
  8. print '<input value="' . htmlspecialchars($string2, ENT_QUOTES) . '" />';
  9.  
File Description
  • escape output
  • PHP Code
  • 08 Jun-2021
  • 221 Bytes
You can Share it: