PHP cURL

Working with cURL requires the use of these methods:

curl_init();      // Initialize a cURL session.
curl_setopt();    // Changes the cURL session behavior with options.
curl_exec❨❩;       // Executes the started cURL session.
curl_close();     // Closes the cURL session and deletes the variable made by curl_init();