|
Title: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: Th0ur007 on May 09, 2016, 11:26:51 PM Introduction:
Original Thread: https://bitcointalk.org/index.php?topic=1464205.0 Hello All, Today i am going to tell you how to make your own altcoin currency converter using PHP and HTML. I know it seems to be difficult but when you understand it properly, it becomes a small piece of work for you. I will simply use https://www.cryptonator.com/api to make it work. Let's Go. Steps to Follow: Kindly follow all the steps and read carefully to understand the meaning of each and every word, so it would be easier to do it yourself. Step 1 - A Basic HTML Page: First of all, You should create a basic HTML Page like this in any of your text editor: Code: <html> Step 2 - PHP Script: Now we will put PHP Coding to grab data using API. If you are not aware what is an API, Check this video: What is an API? (https://www.youtube.com/watch?v=s7wmiS2mSXY) Let's start with creating a variable "$url". This variable will be used to grab data from the API Link i.e. https://www.cryptonator.com/api/ticker/ltc-usd Code: <?php Once we get our data from the API, We will have to decode it using JSON. Create a variable called $price in which we will store our decoded information. Code: <?php At this moment we have the API's Information in the variable called $price, It's time to get an exact data which we want i.e. last price. We will create a new variable called $latest_price and will store the price in it. Code: <?php You did it, we got all the data and it's time to show it. Simply use echo function of PHP to output the data: Code: <?php Step 3 - Integrate HTML with PHP: Now put the PHP Code on the top of the HTML Page we created before like this: Code: <?php Step 4 - Auto Refresh Page (credit goes to KenR to remind me about this) Our Converter is ready, we are going to add an auto refresh code to make it display the latest values. Simply add this code: Code: <meta content='10' http-equiv='refresh'/> <!-- Reloads Page every 10 seconds --> FINAL: That's what we get! Code: <?php Changing Altcoin: Simply change the url from /ltc-usd to /altcoin-usd (Example: https://www.cryptonator.com/api/ticker/doge-usd) Tada! You did it ;) Hope this Guide helped you in understanding the concept of API's, Drop me some comments to motivate :) If you want to Donate, Please: 18L6tGTdJfCenGxzc8ZDLsjBNaUfekXzjj Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: locopao on May 09, 2016, 11:40:57 PM just another excellent tutorial by Th0ur007 !!!
Keep them coming! Thumbs up! (i'll post a simple use of your code as a sidebar widget for wordpress with some css added, later on ;)) Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: Th0ur007 on May 09, 2016, 11:52:49 PM just another excellent tutorial by Th0ur007 !!! Thanks alot mate, And ye!Keep them coming! Thumbs up! (i'll post a simple use of your code as a sidebar widget for wordpress with some css added, later on ;)) I like your widget. Cheers. Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: locopao on May 10, 2016, 07:39:12 AM can you add a "if / else" statement, too?
so if the "change" is >0 then a green up arrow shows else "change" is <0 then a re down arrow shows so with a few modifications and a little css help this would be the result: https://i.imgur.com/hUFkQhO.jpg Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: Th0ur007 on May 10, 2016, 08:41:39 AM can you add a "if / else" statement, too? Nice work bro, i liked it.so if the "change" is >0 then a green up arrow shows else "change" is <0 then a re down arrow shows so with a few modifications and a little css help this would be the result: https://i.imgur.com/hUFkQhO.jpg Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: hoop on May 10, 2016, 11:15:09 AM can you add a "if / else" statement, too? Nice work bro, i liked it.so if the "change" is >0 then a green up arrow shows else "change" is <0 then a re down arrow shows so with a few modifications and a little css help this would be the result: https://i.imgur.com/hUFkQhO.jpg Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: dquancey on May 10, 2016, 12:12:13 PM Great tutorial, thanks for posting.
Going to mess around and put some CSS in there to tidy it up a little :) Title: Re: [GUIDE] How to Make ANY Altcoin Price Converter in 2 Mins! [HTML/PHP] Post by: Th0ur007 on May 10, 2016, 12:34:13 PM can you add a "if / else" statement, too? Nice work bro, i liked it.so if the "change" is >0 then a green up arrow shows else "change" is <0 then a re down arrow shows so with a few modifications and a little css help this would be the result: https://i.imgur.com/hUFkQhO.jpg Great tutorial, thanks for posting. Haha, good luck with that.Going to mess around and put some CSS in there to tidy it up a little :) Cheers. |