Jump to content

accessing ftl extension


GerryWoolf

Recommended Posts

It's got nothing to do with the extension. Show the code you're attempting to use.

 

Example code:

 

?php

$fp = fopen("http://www.national-lottery.co.uk/player/lotto/results/downloadResultsCSV.ftl", "r");
if (!$fp)
{
die("Failed to open URL");
}
else
{
while(($data = fgetcsv($fp)) !== false)
	print_r($data);
}

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.