How do I hide the output from curl in PHP?
My code as it stands is the following:
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt(
Also make sure to turn off this option:
curl_setopt($ch, CURLOPT_VERBOSE, 0);
Or else it will still print everything to screen.