I'm planning to use PHP for a simple requirement. I need to download a XML content from a URL, for which I need to send HTTP GET request to that URL.
How do I do it in PHP?
|
|
|
|
|
|
|
Unless you need more than just the contents of the file, you could just use
|
||||
|
|
|
I like using fsockopen open for this. |
||
|
|
|
|
Depending on whether your php setup allows fopen on URLs, you could also simply fopen the url with the get arguments in the string (such as http://example.com?variable=value ) Edit: Re-reading the question I'm not certain whether you're looking to pass variables or not - if you're not you can simply send the fopen request containg http://example.com/filename.xml - feel free to ignore the variable=value part |
|||
|
|
|
|
You must have the CURL library (http://us3.php.net/curl) installed:
|
||
|
|
|
|
||||
|