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
|
|||||||||||||||||
|
|
For more advanced GET/POST requests, you can install the CURL library (http://us3.php.net/curl):
|
|||||
|
|
|
|||||||||
|
|
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 |
||||
|
|
|
Remember that if you are using a proxy you need to do a little trick in your php code:
|
||||
|
|