Advertisement
Guest User

Untitled

a guest
May 6th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. $scheisse = arber(5);
  4.  
  5.  
  6. function arber($dumm)
  7. {
  8. $i = $dumm + 3;
  9.  
  10. return $i;
  11. }
  12.  
  13. ?>
  14.  
  15. <!---
  16.  
  17. 1 2 3 4 5 6 7
  18. 3 5 7 9 3 5 7
  19. 1 4 8 4 3 4 8
  20. -->
  21.  
  22. <?php
  23.  
  24. $table;
  25.  
  26. foreach($table as $row)
  27. {
  28. $row;
  29. foreach($row as $cell)
  30. {
  31. echo $cell;
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement