Author: thedebuggers

Messenger Bot Subscription Using Broadcast API in PHP

If you are planning to implement Subscription System in Messenger Bot, here is a good news. With the release of Broadcast API, sending message to numerous recipients has been so much easier. In this article, I am going to discuss how to broadcast message to multiple users through Messenger Bot.

Bulk Insert Update into MySQL using PHP

Sometimes we need to insert large data set into database table. Using one INSERT statement per row is quite inefficient. Instead of this, we can assemble one INSERT statement with multiple rows. In this article, I am going to show how to perform bulk insert into MySQL table using PHP.

Search YouTube videos using YouTube API 3.0

In this post, I'll share how to search YouTube videos by using YouTube Data API v3 and PHP. I'll show how to search videos by type (video, channel, playlist), keywords and other search terms. In addition to this, I'll show how to order the result by various parameters. After reading this article, you can make search

Number Translation using PHP & JavaScript

Are you having problem with translating numbers to their equivalent signs in different languages? Don’t worry! This post helps you in number translation. As an example, let's convert English numbers to Devanagari equivalent and vice versa using PHP & JavaScript.