I have the following code:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://accountgm.moonton.com:37001");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'blabla');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
curl_close ($ch);
echo $server_output;
The output is blank, but I'm not sure why. Would appreciate guidance.