I'm working on a live betting feed xml file which is much more complicated than i thought... From the url of the feed's provider, i'm getting a gzip file, which has no extension. Using 7zip from windows i'm able to extract the data, in a file with no extension. Renaming the file to .xml, i'm able to handle it with simplexml_load_file().
Howevere, this file contains huge amounts of data, which will crash my browser (both ie and ff).
My questions regarding this task, from the beginning are:
1. how can i get the initial file with php, having the url. (remote server uses windows authentication).
2. how to handle the file, which as i mentioned is without extension but is a gzip.
3. extracted xml file is about 120MB, which may cause the server ruuning slow(?). Any suggestions would be really useful!