Hello everybody
I am use blockchain in my shop for accept bitcoin but i need to wait for 2 block confirmation in php
Now i use a simple copy past in tutorial for test balance
$cc = @file_get_contents('https://blockchain.info/q/address/'.$address.'/?api_code='.$api_code);
$cc = $cc / 100000000;
if($do['balance'] > $cc) // if balance in blockchain change to 0
{
update
}
else // if deposit
{
update
}
Who to use like
https://blockchain.info/q/address/'.$address.'/?api_code='.$api_code.'
&confirmations=2 ?
Thanks you