Modules/cURL/curl init

From Multi Theft Auto: Wiki
Revision as of 20:31, 13 June 2010 by Mrdejong (talk | contribs)
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 curl_init(string url)

Required arguments

  • url The url which you want to connect too.

Optional arguments

{{{optional_arguments}}}

Returns

A valid curl handler on succes, otherwise it returns false

Example

curl = curl_init("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