Modules/cURL/curl init: Difference between revisions
Jump to navigation
Jump to search
(Created page with '__NOTOC__ {{ModuleFunction|cURL}} Initialize the curl engine. ==Syntax== <syntaxhighlight lang="lua"> curl curl_init(string url) </syntaxhighlight> ==Required arguments== * '''url''' The url which you w…') |
No edit summary |
||
Line 27: | Line 27: | ||
==See also== | ==See also== | ||
{{Modules/cURL/functions}} | {{Modules/cURL/functions}} | ||
[[Category:Modules]] |
Revision as of 20:23, 13 June 2010
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.
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