Post
Topic
Board Service Announcements
Re: BIPS, Payment Service Provider (PSP) for Merchants & Free Bitcoin Wallet ☯
by
Kris
on 11/11/2013, 17:55:57 UTC
Hi, you will have to grep the output from curl_exec in a JSON decoded object like below:

Code:
$output = json_decode(curl_exec($ch));

This will give you a stdClass object.

Code:
{
"status": "success",
"txid": "the transaction id"
}

Access this object in PHP:

Code:
print $output->status;
print $output->txid;