All,
I'm new to PHP, so I'm trying to figure out how to do things that I used to do in ASP.
One of those things is getting data from another web page, server-side.
In ASP, I'd do this:
Set objXML = Server.CreateObject("Microsoft.XMLHTTP")
objXML.open "GET", strURL, False
objXML.send()
I could then use regexp to pull out data from objXML.responseText.
How can I do the same thing in PHP?
Many thanks in advance!
Cheers,
Matt Stuehler