When I use curl via POST and set CURLOPT_POSTFIELD do I have to urlencode or any special format?

for example: If I want to post 2 fields, first and last:

first=John&last=Smith

what is the exact code/format that should be used with curl?

$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$reply=curl_exec($ch);
curl_close($ch);
link|improve this question

11% accept rate
feedback

5 Answers

From the manual:

CURLOPT_POSTFIELDS

The full data to post in a HTTP "POST" operation. To post a file, prepend a filename with @ and use the full path. The filetype can be explicitly specified by following the filename with the type in the format ';type=mimetype'. This parameter can either be passed as a urlencoded string like 'para1=val1&para2=val2&...' or as an array with the field name as key and field data as value. If value is an array, the Content-Type header will be set to multipart/form-data. As of PHP 5.2.0, files thats passed to this option with the @ prefix must be in array form to work.

So something like this should work perfectly (with parameters passed in a associative array):

function preparePostFields($array) {
  $params = array();

  foreach ($array as $key => $value) {
    $params[] = $key . '=' . urlencode($value);
  }

  return implode('&', $params);
}
link|improve this answer
2  
Why would you pass a string if you can pass an array...? – ThiefMaster Mar 7 '11 at 20:54
You're right, I'm just somehow used to this because it's the same as GET - a matter of habit so that you won't "forget" to escape next time you're doing GET. – Czechnology Mar 7 '11 at 21:42
feedback

In case you are sending a string, urlencode() it. Otherwise if array, it should be key=>value paired and the Content-type header is automatically set to multipart/form-data.

Also, you don't have to create extra functions to build the query for your arrays, you already have that:

$query = http_build_query($data, '', '&');
link|improve this answer
feedback

According to the PHP manual, data passed to cURL as a string should be URLencoded. See the page for curl_setopt() and search for CURLOPT_POSTFIELDS.

link|improve this answer
feedback

Do not pass a string at all!

You can pass an array and let php/curl do the dirty work of encoding etc.

link|improve this answer
feedback

If you send POST as a string (from your example, first=John&last=Smith), it has to be url encoded. The only difference between GET and POST is that POST data isn't seen by the user. And since POST data (as well as GET) is a part of the HTTP request, it MUST be encoded.

$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'first=urlencode(John)&last=urlencode(Smith));
$reply=curl_exec($ch);
curl_close($ch);
link|improve this answer
urlencoding a full query string makes no sense. The values in it have to be encoded.. but encoding the full query string would encode & and thus break it. – ThiefMaster Mar 7 '11 at 20:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.