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
?>
count($fields)in toCURLOPT_POSTFIELDSinstead of the actual fields, is that intentional?