test HTTP Post callback
http://www.bitcoinmonitor.net/help/#httpcallbacklooks like
http://requestb.in/1jq58n51?inspectSo Ive i got some help on IRC, and i got this far.
<?php
$c = file_get_contents('php://input');
$c = json_decode($c, true);
//echo $c['txhash'];
//$txhash = $_POST['txhash'];
$entry = $c->signed_data['txhash'];
//mysql $entry into table
?>
I have no idea what on earth php://input is about
But I know $c is an array and stores 'array' in my sql, so close right? but how do i get the txhash out of it?