There is a report, which a server automatically creates in my Intranet.
I can access it and download it via an url like this:
http://www1.intranet.com/reportingtool.asp?settings=var&export = ok
I want to use it with PHPExcel.
$objPHPExcel = PHPExcel_IOFactory::load("file.xls");
When I swop file.xls with the url it doesn't work.
Which alternative way can I use to avoid the step by manually downloading the excel-file and writing the file-name in the code?