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

  1. <?php
  2. include ("clase.php");
  3.  
  4. $n1=10;
  5. $n2=5;
  6.  
  7. echo "La suma es: ".matematica::sumar($n1,$n2);
  8. echo "<br>";
  9. echo "La resta es: ".matematica::restar($n1,$n2);
  10. echo "<br>";
  11. echo "La multiplicación es: ".matematica::multiplicar($n1,$n2);
  12. echo "<br>";
  13. echo "La división es: ".matematica::dividir($n1,$n2);
  14. echo "<br>";
  15.  
  16. ?>
File Description
  • ghmkgjm
  • PHP Code
  • 19 Sep-2022
  • 334 Bytes
You can Share it: