What is confirmation notificaion in bitcoin via block chain API

1

I have used bitcoin block chain API in my website, it works and i updated the db when call back the function call but the problem is that db updated multiple times

my codes are

if ($_GET['confirmations'] >= 6) {
    //payment confirmed
    //do some DB oparation
}

i want to know in which case the paymnet is confirmed and how could i update DB once.

Thanks

psanjib

Posted 2015-09-24T10:38:23.107

Reputation: 111

No answers