Don't Echo Out cURL
Put this on line 2:
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
Include this option before curl_exec()
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
Put this on line 2:
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
Include this option before curl_exec()
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);