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

  1. <?php
  2.  
  3. $width =188;
  4. $height =264;
  5.  
  6. $left =798;
  7. $top =276;
  8.  
  9. // Überpüfen, welche Seite grösser ist
  10.  
  11. if ($height > $width) {
  12.     
  13. // Bild ist höher als breit 
  14.  
  15. // Diferenz herausfinden
  16.  
  17. $differenz = $height - $width;
  18.  
  19. echo $differenz;
  20.  
  21.     
  22. } else {
  23.  
  24. // Bild ist breiter als hoch    
  25.     
  26.     
  27. }
  28.  
  29.  
  30. ?>
  31.  
File Description
  • 12
  • PHP Code
  • 20 Feb-2019
  • 303 Bytes
You can Share it: