Hocam curl`la nasıl olucağını diyemem ama ,
b.php`de formu javascriptle onload`ta hemen post`laya bilirsin.
örnek:
<html>
<head>
<script type="text/javascript">
function submitform()
{
  document.formunismi.submit();
}
</script></head>
<body onload="submitform()">
<form name="formunismi" action="c.php">
<input type='text' name='deneme' />
</form>
</body>
</html>