In this post, we will see a Rest API of how to get Bitcoin address details and a Transaction list of any given address. The API is written in PHP but can be used in any language with related changes to that certain language. Bitcoin is a cryptocurrency invented in 2008 by an unknown person […]
Category: Php

How to Build a Telegram Bot Using PHP
Telegram is a cloud-based instant messaging and voice over IP service. Telegram client apps are available for Android, iOS, Windows Phone, Windows, macOS, and Linux. Users can send messages and exchange photos, videos, stickers, audio, and files of any type. Telegram has all of the features you would expect from a modern chat platform, including […]

How to install composer
What is Composer A composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. System Requirements Composer requires PHP 5.3.2+ to run. A few sensitive PHP settings and compile flags are also required, but when using the […]

How to install Node.js on WHM server or cPanel
In this post i will explain how to install Node.js on your hosting server. Node.js is a JavaScript runtime and uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js’ package ecosystem, npm, is the largest ecosystem of open source libraries in the world. You can check more information on their official […]

How to get a YouTube video Image or Thumbnail
In this post you will learn how to get you tube video images and thumbnails. There are various method to get Images or Thumbnails like using url manually or getting it from API. Below you will see both methods of getting this information. Method 1. Getting images manually using URL. Each YouTube video has 4 […]

Self repeating countdown timer using javascript
Timed events are fun and interactive for your users. People love performing in some type of competition, but there are many other reasons to show a JavaScript timer on your website. Regardless of the reasons, I am going to show you how to create a countdown timer using JavaScript and HTML. My primary caution for […]

Add/Delete data using Php and Mysql for Beginner
This tutorial belongs to them who just starting their hands in Php or need a quick Add/Delete functionality in Php.