I have been trying to get a post request to work via cURL. I am a complete novice at cURL so I think it is a simple mistake. I have sent the data through a HTML form and through Linux terminal and it woks fine. Not sure why I it doesn't work in cURL though.
<?php
$PaymentUrl = "https://test@test.com";
$PostString = "value1=value&value1=value&value1=value
value1=value&value1=value&value1=value&value1=value&value1=value&value1=value&
value1=value&value1=value&value1=value&value1=value&value1=value&value1=value&
value1=value&value1=value";
$ch = curl_init($PaymentUrl);
curl_setopt($ch, CURLOPT_POST,17);
curl_setopt($ch, CURLOPT_POSTFIELDS, $PostString);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
echo $result;
curl_close($ch);
?>
Please note I changed the values and URL.
Thanks in advance!

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);– Can Geliş Feb 11 at 15:35CURLOPT_POST=> true (or 1), not the number of fields, perhaps that's the problem here. Of course, if it doesn't work, inspectcurl_error($ch);.... – Wrikken Feb 11 at 15:39application/x-www-form-urlencodedkind used in most posts. It does look like a GET query indeed, but it's just as valid as a POST body. – Wrikken Feb 11 at 15:40