Save remote XML to local website folder
Posted on
16th Feb 2014 07:03 pm by
admin
Hi, I hope you can help me out. I would like to be able to pull an XML file from another site and then store it in a local folder on my site. That way, I would only need to pull the xml file once in a while instead of every time someone opens that page.
here is a snippet of code I found, but the size of the saved XML file is smaller and is not consistently the same size of file. Some of the information gets lost.
$fp = fopen( 'http://forecast.weather.gov/MapClick.php?lat=45.21640&lon=-112.63700&FcstType=dwml', 'r' );
$string = fread( $fp, 1024*9 );
fclose( $fp );
$fp = fopen( 'weather.xml', 'w' );
fwrite( $fp, $string );
fclose( $fp );
I hope I explained that
No comments posted yet
Your Answer:
Login to answer
316
22
Other forums
quick basic question, hopefully not dumb
I don't know how to search for this, so forgive me if it's been covered...
I often see an exa
Adding to an Int row in db
Hi, i have a database which houses all of the users of my site. One of the columns is for points whi
how to put the 0-100 numbers into 1.txt and 100-200 into 2.txt ?
how to put the 0-100 numbers into 1.txt and 100-200 into 2.txt and so on 200-300 into file 3.txt ?
Hi, explode and strstr.
Hi, I seem to be confused about the strstr function, eg. i have a string like:
"a.b.c.d.e.f&
PHP and Javascript
Hello Everyone,
I have a page that needs a javascript code to be written between PHP code but