LawyerMorty

Untitled

Apr 25th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?PHP
  2. $lines = 20; // to be shown
  3. $homepage = file_get_contents('http://lildollamta.url.ph/MTA/updates.txt');
  4. $homepage_split = explode("\n", $homepage); // array with all lines
  5. for ($i = 0; $i < $lines; $i++)
  6. {
  7. echo "{$homepage_split[$i]}<br />";
  8. }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment