With php, how do you get the source from a url?
Printable View
With php, how do you get the source from a url?
If you have the allow_url_fopen setting on (I believe it is by default) then you can simply use file_get_contents.
If you don't for whatever reason, you could use cURL.
Exactly what I wanted. Thanks :)