Hello I am trying to extract some info from a json format page
The page is : https://blockchain.info/fr/rawaddr/1BQLNJtMDKmMZ4PyqVFfRuBNvoGhjigBKF
this link allows to get all bitcoin transactions from an address. All the quotation marks confuse me, I can not see clearly
I want to display everything like the original blockchain website Blockchain Display view The beginning will be something like that
$json = file_get_contents("https://blockchain.info/fr/rawaddr/1BQLNJtMDKmMZ4PyqVFfRuBNvoGhjigBKF");
var_dump(json_decode($json));
I can extract basic info from JSO to php, but here there is too much transactions and I think we need to use a loop to display everything but I don't know how to do that If someone can display for me in php the 5 first transactions it will be very sympathic.
Thanks a lot in advance youw ill really help me if you can do that !
If you goal is to display all Tx info you want to do that.
Note a blockchain transaction can be a little complexe since one transaction can have multiple input and multiple outputs. you might want to cycle trough outputs as well to display all addresses who received bitcoin from a transaction in that case you can simply add another foreach output
a more advanced code to add tx understanding logic