send string data is correct so send? I'm not able to send the request.
$header = str_pad("cccc", 4," ", STR_PAD_RIGHT);
$header .= str_pad("bbbb", 6," ", STR_PAD_RIGHT);
$url ="http://www.xxxxxxxxxx.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $header);
$response_url = curl_exec($ch);
$erro_curl = curl_error($ch);
curl_close($ch);
print_r($response_url);