Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Created April 20, 2017 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hexodus/9f8c1e49ff289f014aa48dc7048488d8 to your computer and use it in GitHub Desktop.
Save Hexodus/9f8c1e49ff289f014aa48dc7048488d8 to your computer and use it in GitHub Desktop.
<?PHP
$my_URL="http://some-website.com/mydata.txt";
$lines = file($my_URL);
foreach ($lines as $line_num => $line)
{
echo $line_num." ".$line;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment