Core Function HTTPGetString
From Sputnik Wiki
(Difference between revisions)
(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...") |
|||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
− | HTTPGetString( < | + | HTTPGetString( <url>) |
</pre> | </pre> | ||
Revision as of 09:10, 18 January 2013
HTTPGetString( <url>)
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 );