Guest User

Untitled

a guest
Oct 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. $num=intval($_GET['num']);
  3. $filename = 'lista.txt';
  4. $handle = fopen($filename, 'r');
  5. while($num){
  6.     $num=$num-1;
  7.     $line=rtrim(fgets($handle));
  8. }
  9. echo $line;
  10. fclose($handle);
  11. ?>
Add Comment
Please, Sign In to add comment