Call Curl in php.

$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "www.abc.com");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);

Popular posts from this blog

Jtable with database manually in netbeans.

Join in Kotlin coroutines