Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to send a POST request with cURL, but unfortunately I'm only receiving an empty string.

cURL:

<?php
echo "ID: " . $_POST["id"]; // here ID is not empty

$fields = array(
    'id' => urlencode($_POST["id"]),
    'name' => urlencode($_POST["name"])
);

$connection = curl_init();
curl_setopt($connection, CURLOPT_URL, "http://www.example.de/remote.php");
curl_setopt ($connection, CURLOPT_POST, true);
curl_setopt($connection, CURLOPT_POSTFIELDS, count($fields));
curl_setopt($connection, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($connection, CURLOPT_HEADER, 0);
$response = curl_exec($connection);
?>

Remote-Server:

<?php
   var_dump($_POST); // shows an empty array
?>
share|improve this question
2  
You're sending the number of fields, count($fields) in to CURLOPT_POSTFIELDS instead of the actual fields, is that intentional? – pjumble Apr 22 '12 at 1:06
No, that was my fault. – user1170330 Apr 22 '12 at 1:13

1 Answer

up vote 3 down vote accepted

You need to remove the count($fields) and instead just use $fields

curl_setopt($connection, CURLOPT_POSTFIELDS, $fields);

Nowhere do you actually set the cURL option to send the fields

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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