Senden von POST mit cURL - Leeres Array

Ich versuche, eine POST-Anfrage mit cURL zu senden, erhalte aber leider nur eine leere Zeichenfolge.

cURL:

<code><?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);
?>
</code>

Remote-Server:

<code><?php
   var_dump($_POST); // shows an empty array
?>
</code>

Antworten auf die Frage(1)

Ihre Antwort auf die Frage