Wielkie dzięki

A wie ktoś może czemu ten kod nie działa
index.php
<?php
$hand = curl_init();
curl_setopt($hand, CURLOPT_URL, 'http://example.pl/123');
curl_setopt($hand, CURLOPT_POST, 1);
$b['msg_send']=123;
$postFields['subject']=czesc;
$a['message']=[color="#000000"]$_SERVER[HTTP_USER_AGENT][/color];
curl_setopt($hand, CURLOPT_POSTFIELDS, $postFields&a&$b);
curl_exec($hand);
curl_close($hand);
?>
Oto kod formularza, pod który próbuję się podpiąć
<?php
<form name="inputform" method="post" action="http://example.pl/0" onsubmit="return ValidateForm(this)">
<input name="msg_send" value="123" type="hidden">
Temat:
<input name="subject" value="" maxlength="32" class="textbox" style="width: 400px;" type="text"></td>
Wiadomość:
<textarea name="message" cols="80" rows="15" class="textbox"></textarea>
<input name="send_preview" value="Podgląd" class="button" type="submit">
<input name="send_message" value="Wyślij" class="button" type="submit">
</form>
?>
Jednak nic się nie wysyła. Co jest źle?