Guest User

Untitled

a guest
Mar 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <?php
  2.  
  3.     function zaehler($zahl1, $zahl2)
  4.     {
  5.         foreach(range($zahl1, $zahl2) as $number)
  6.         {
  7.             echo $number;
  8.         }
  9.     }
  10.    
  11.       zahler($_GET['zahl1'], $_GET['zahl2']);
  12. ?>
Add Comment
Please, Sign In to add comment