I want perform a CURL request with parameters and values by using GET method but I don't want to mix them before passing to curl like it is in the string:
www.example.com/index.php?parameter=value
I would like to pass separate url string and query string or at best url string + an array of parameters and values to CURL with letting to know CURL that I want to use GET method (CURLOPT_HTTPGET=TRUE).
Is there any CURLOPT_POSTFIELDS equivalent for GET method?