Need help on cURL response
I'm sending some information to some URL, and that URL returns me some number. How can I colect that number and store it in veriable
this is code for sending saome information to URL
Code: Select all
$some_URL = "http://www.some-url.com";
$ch = curl_init($some_URL);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);regards ddragas