fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $name='Patt';
  6. $age=24;
  7.  
  8. if($name!='Patryk')
  9. {
  10. echo "Das bin nicht ich" ;
  11. }
  12. else if($age == 24)
  13. {
  14. echo "Its a me";
  15. }
  16.  
  17.  
Success #stdin #stdout 0.02s 24396KB
stdin
Standard input is empty
stdout
Das bin nicht ich