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

  1. <?php
  2. $Geb_Jahr= 1930;
  3. $Geb_Monat= 11;
  4. $Akt_Jahr= 2023;
  5. $Akt_Monat= 9;
  6. $Geb_Tag= 2;
  7. $Akt_Tag= 11;
  8.  
  9. if($Geb_Monat == $Akt_Monat){
  10.     $Geb_Tag= 2;
  11.     $Akt_Tag= 11;
  12. }
  13. if ($Geb_Monat > $Akt_Monat){
  14.     $alter= $Akt_Jahr - $Geb_Jahr -1;
  15. }
  16. if ($Geb_Monat < $Akt_Monat) {
  17.     $alter= $Akt_Jahr - $Geb_Jahr;
  18. }
  19. if($Geb_Tag <= $Akt_Tag){
  20.     $alter= $Akt_Jahr - $Geb_Jahr;
  21. }
  22. else{
  23.     $alter= $Akt_Jahr - $Geb_Jahr -1;
  24. }
  25. echo $alter;
  26.  
  27. if ($alter < 18){
  28.     echo "  Sie sind minderjährig.";
  29. }
  30. if ($alter > 65){
  31.     echo "  Sie sind Rentner.";
  32. }
  33. else{
  34.     echo "  Sie sind erwachsen.";
  35. }
  36.  
File Description
  • Test_Knobbe.php
  • PHP Code
  • 11 Sep-2023
  • 579 Bytes
You can Share it: