In PHP CURL POST tutorial, I have explained how to send HTTP GET / POST requests with PHP CURL library.
Below are the examples covered in this article.
1) Send HTTP GET Request with CURL
2) Send HTTP POST Requests with CURL
3) Send Random User-Agent in the Requests
4) Handle redirects (HTTP 301,302)
5) Handle Errors.
Why we need PHP CURL ?
To send HTTP GET requests, simply we can use file_get_contents() method.
1 |
But sending POST request and handling errors are not easy with file_get_contents().
Sending HTTP requests is very simple with PHP CURL.You need to follow the four steps to send request.
step 1). Initialize CURL session
1 | $ch = curl_init(); |
step 2). Provide options for the CURL session
1 2 3 | curl_setopt( $ch ,CURLOPT_RETURNTRANSFER,true); //curl_setopt($ch,CURLOPT_HEADER, true); //if you want headers |
CURLOPT_URL ->…
Ver la entrada original 619 palabras más