I am attempting to post data using fsockopen, and then returning the result. Here is my current code:
Try this instead
$out .= 'Content-Length: ' . strlen($data) . '\r\n'; $out .= "Connection: Close\r\n\r\n"; $out .= $data;