PHP CURLOPT_GET Does not Exist!
Sooner or later someone's going run into this notice error: Use of undefined constant CURLOPT_GET - assumed 'CURLOPT_GET'. Probably you downloaded a PHP class or a function written by someone else from the Web. Right?
Well, no matter how you ended up with that notice, let's try to analyze the problem and the solution.
Take a look at the example code:
[php]
curl_setopt($ch, CURLOPT_GET, true);
[/php]
We can safely as ...