<?php
string|bool curl_exec(CurlHandle $handle);
$handle = A cURL handle returned by curl_init()
?>
<?php
$url = "https://www.google.com/";
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate option
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
?>
<?php
$url2 = "https://ed48.com/";
// create a new cURL resource
$ch2 = curl_init();
// set URL and other appropriate options
// grab URL and pass it to the browser
curl_exec($ch2);
// close cURL resource, and free up system resources
curl_close($ch2);
?>