This question is simple. What function would I use in a PHP script to load data from a URL into a string?
|
|
CURL is usually a good solution: http://www.php.net/curl
|
||
|
|
|
|
With file wrappers you can use file_get_contents to access http resources (pretty much just GET requests, no POST). For more complicated http requests you can use the curl wrappers if you have them installed. Check php.net for more info. |
||
|
|
|
|
I think you are looking for
|
||||
|
|
|
Check out Snoopy, a PHP class that simulates a web browser:
|
||
|
|
