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

  1.  
  2. <?php
  3. $a = "grey";
  4. $b = "SUV";
  5. $c = "Ford";
  6. $d = "red";
  7. $e = "Toyota";
  8.  
  9. print "My car is ".$a."<br> My car is a ".$b."<br> My car is a ".$c."<br> I wish it was a ".$d." ".$e;
  10.  
  11. ?>
  12.  
File Description
  • 8.
  • PHP Code
  • 24 Feb-2021
  • 180 Bytes
You can Share it: