Hello, I need help to integrate bitcoin payment into my site web in php
I have juste this now i use blockchain api
https://blockchain.info/fr/api/api_receive$secret = 'ZzsMLGKe162CfA5EcG6j';
$my_address = '1A8JiWcwvpY7tAopUkSnGuEYHmzGYfZPiq';
$my_callback_url = '
https://mystore.com?invoice_id=058921123&secret='.$secret;
$root_url = '
https://blockchain.info/api/receive';$parameters = 'method=create&address=' . $my_address .'&callback='. urlencode($my_callback_url);
$response = file_get_contents($root_url . '?' . $parameters);
$object = json_decode($response);
echo 'Send Payment To : ' . $object->input_address;
I create a unique address but after I do not understand help plz
sorry for my little english