Core Function HTTPGetString
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> HTTPGetString( <not available> ) </pre> === Description === Copy all text from a URL and return it as a string. === Parameters === ==== url ==== URL to get all text fr...")
Newer edit →
(Created page with "<pre> HTTPGetString( <not available> ) </pre> === Description === Copy all text from a URL and return it as a string. === Parameters === ==== url ==== URL to get all text fr...")
Newer edit →
Revision as of 12:57, 1 December 2011
HTTPGetString( <not available> )
Contents |
Description
Copy all text from a URL and return it as a string.
Parameters
url
URL to get all text from
Return Value
Success: Returns the text from website.
Failure: Returns empty string.
Remarks
None
Example
$Text = HTTPGetString("http://google.com"); MsgBox( $Text );