in reply to Re^3: receiving btc payments
in thread receiving btc payments

yes i know. refreshing the page will send post request again and generate other receiving address. which i want to avoid thats why am just looking for other way. but other issues are not big issue as this is just a sample script. can be implemented

my problem is only that. to avoid refreshing the page. i may find myself using ajax with loading gif to determine payment if received. but i didn't want to use ajax

Replies are listed 'Best First'.
Re^5: receiving btc payments
by marto (Cardinal) on Dec 07, 2018 at 20:43 UTC

    This doesn't address the problems discussed. Simple as you think, this isn't a viable payment script, you literally don't track anything until a transaction is confirmed on the blockchain (ignoring all other issues already mentioned associated with this).

      i really dont understand wat your saying. but i dont track transaction i only check if payment has been sent to the specific address using bitpay api then it print that we got payment and do the rest

      still if payment is not equal to wat we want. it will still be in not yet received payment. until we get actual payment we want. but u can see that in the script. just pest me the line of code has problem i see

        You don't seem to understand the flow of your own code, you check totalReceived on a fixed address, not a unique address per transaction. How do you imagine this makes any sense? You aren't validating that people have actually paid you what you think, in addition to all the other issues previously discussed. You need to learn more about blockchains and transactions, and address the other issues already raised.