Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?PHP
- $lines = 20; // to be shown
- $homepage = file_get_contents('http://lildollamta.url.ph/MTA/updates.txt');
- $homepage_split = explode("\n", $homepage); // array with all lines
- for ($i = 0; $i < $lines; $i++)
- {
- echo "{$homepage_split[$i]}<br />";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment