Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <charset type="utf-8">
  5. <style>
  6. </style>
  7. <script>
  8. </script>
  9. </head>
  10. <body>
  11. <?php
  12. $fd = fopen("/net/web/data.csv", "r");
  13. //Output a line of the file until the end is reached
  14.  
  15. while(!feof($fd))
  16. {
  17. echo fgets($fd). "<br />";
  18. $lines = count(file($fd));
  19. }
  20. fclose($fd);
  21. ?>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement