Código:
y se se puede llamar con<% Function GetHTML(strURL) Dim objXMLHTTP, strReturn, strHTML Set objXMLHTTP = SErver.CreateObject("MSXML2.ServerXMLHTTP") objXMLHTTP.Open "GET", strURL, False objXMLHTTP.setRequestHeader "Accept-Language", "sp" objXMLHTTP.setRequestHeader "Pragma", "no-cache" objXMLHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" objXMLHTTP.SetRequestHeader "Content-Type", "text/html" objXMLHTTP.SetRequestHeader "charset", "iso-8859-1" objXMLHTTP.Send if objXMLHTTP.statusText="OK" then body8209 = objXMLHTTP.responseBody GetHTML = "" For i = 0 to UBound(body8209) GetHTML = GetHTML & chrw(ascw(chr(ascb(midb(body8209,i+1,1))))) Next else Response.write "Error en página:" & objXMLHTTP.statustext end if Set objXMLHTTP = Nothing End Function Function GetText(strText, strStartTag, strEndTag) dim intStart intStart = instr(1, strText, strStartTag, vbtextcompare) if intStart then intStart = intStart + len(strStartTag) intEnd = InStr(intStart + 1,strText,strEndTag,vbtextcompare) GetText = CStr(Mid(strText,intStart,intEnd - intStart)) else GetText = " " end if End Function %>
Código:
de forma q te da el titulo de una web.MM_URL = "http://www.forosdelweb.com" MM_URLHTML = GetHTML(MM_URL) Response.write(GetText(MM_URLHTML,"<Title>","</Title>"))
necesito lo mismo pero con php y me corre prisa, quien me da alguna pista?