extension joomla, template joomla,banner extension joomla,jomla slider,slider joomla
Curl functions in PHP

Curl functions in PHP

WE can collect data from other websites by posting like a browser by using php curl functions. This is not only to collect data but we can also submit form data by POST or GET method. Curl function supports many other protocols. Initially we will start with mostly used HTTP and Post protocols for our scripts and then we will work on others.

Curl support.

We have to first ensure that curl support is available in our server, for this PHP installation is to be checked. The best way is to check is our php info function. Here is a screen shot of php info. php info curl extension support
If curl support is not available then process is same as adding any other features to PHP. Here is one example. Same can be followed to add curl extensions in PHP. Once the curl support is available then we will start with a simple code by getting google.com url. The first line will initialize a curl instance and then we will use
<?php  $my_curl = curl_init();//  cURL resource    // WE will add options to our curl   curl_setopt($my_curl, CURLOPT_URL, "https://www.google.com/");  curl_setopt($my_curl, CURLOPT_HEADER, 0);    curl_exec($my_curl); //execute curl function now and display  curl_close($my_curl); // close the curl connection  ?>  

Reading external url by curl









Related Article



destination source:https://www.plus2net.com/php_tutorial/curl-installation.php