Forum Moderators: coopster
<%
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "http://www.mydomain.com", False
xml.Send
Response.Write(xml.responseText)
%>
I tried myself with ASP2PHP conversion tool. The following code was generated. But does not work. I get a parse error. Please help!
<?PHP
$xml->Open "GET" "http://www.mydomain.com" $False;
$xml->Send;
echo $xml->responseText;
?>
Eagerly waiting for your reply!
Regards,
aries