Modules/cURL/curl init

From Multi Theft Auto: Wiki
Revision as of 11:06, 22 June 2014 by DutchCaffeine (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Package-x-generic.png This function is provided by the external module cURL. You must install this module to use this function.

Initialize the curl engine.

Syntax

curl curlInit([string url])

Required arguments

  • There are no required arguments.

Optional arguments

  • url The url which you want to connect too.

Returns

A valid curl handler on succes, otherwise it returns false

Example

curl = curlInit("http://mtasa.com/");
if not curl then
    outputDebugString("Can't connect to http://mtasa.com/ with cURL");
else
    -- lets do something here.
end

See also