Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. $plik = fopen('kiero.txt','r');
  3.  
  4. $zawartosc = '';
  5.  
  6. while(!feof($plik))
  7. {
  8. $linia = fgets($plik);
  9. //echo $linia;
  10. //echo '<br><br>';
  11. //$zawartosc .= $linia;
  12. $tb = explode(':', $linia);
  13. for($x = 0; $x < 12; $x++) {
  14.  
  15. echo $tb[$x];
  16. echo "<br />";
  17.  
  18. }
  19. }
  20.  
  21. //echo $zawartosc;
  22.  
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement