Katka 2 zkracene - 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 Katka 2 zkracene.php

  1. <?php
  2. $a = 0;
  3. $b = 1;
  4.  
  5. for ($n =1;$n <=27;$n++){
  6.     $c = $a + $b;
  7.     echo $a ." ";
  8.  $a = $b;
  9.  $b = $c;
  10. }
  11. ?>
File Description
  • Katka 2 zkracene
  • PHP Code
  • 14 Dec-2018
  • 109 Bytes
You can Share it: