Skip to main content

Build Push Notification System with PHP & MySQL

In our previous tutorial, we have explained how to develop School Management System with PHP & MySQL. In this tutorial, we will explain how to Build Push Notification System with PHP & MySQL.

Push Notification is the most used communication channel by web applications to stay in contact with their users. When we visit any website, we see a notification consent alert to allow or block notification. These alerts are created by websites to get consent to display notifications with latest updates, news etc. If we grant permissions to notification display then the notifications are pushed by website administrator to display to website users.

Currently, the push notification is the most demanding functionality that’s implemented in websites. So if you’re developing web application and need to implement push notification functionality then you’re here at right place. In our previous tutorial you learned how to implement product search filtering with PHP, In this tutorial you will learn how to create Push Notification System with PHP and MySQL.

(more…)

Scrape SERP Data using SerpStack API with Python

Search Engine Results Pages known as SERP is the web pages that’s displayed by Search Engine. When a user enter keywords to search something and search engine make search for that and returned relevant search result as web pages.

Generally we make manual search for keywords to get search results from few web pages. But sometimes we need to search for many keywords and get search results from thousands of web pages and it’s not possible through manual search. We can use SERP APIs to search for many keywords and get result from number of search result pages.

So if you’re looking for implementing functionality to get SERP data, then you’re here at right tutorial. In this tutorial, you will learn how to Integrate SerpStack API with Python to get SERP data from search engine like Google etc.

(more…)

Image Upload and Crop in Modal with jQuery, PHP & MySQL

Image upload and crop is an important feature of web applications. This feature is mainly used in user sections to allow users to upload and crop their profile picture before save to the database. The image crop before save is very user friendly feature as it allow users to resize picture to display correctly and also save memory.

So if you’re thinking about implementing image upload and crop functionality in your application, then you’re here at the right place. In this tutorial, you will you will learn how implement Image Upload and Crop in Bootstrap Modal using jQuery and PHP.

We will cover this tutorial in easy steps to implement live demo of image upload and crop functionality using jQuery, PHP and MySQL.

(more…)

Product Search Filtering using Ajax, PHP & MySQL

Product Filtering is an important functionality of eCommerce websites to allow users to filter products listing according to requirement.

So if you’re looking for solution to implement product search filtering in your project then you’re here at right place. In our previous tutorial, you have learned to implement your own captcha script in PHP. In this tutorial you will learn how to implement Product Search Filtering using Ajax, PHP & MySQL.

We will cover this tutorial with live example with product filtering functionality just like eCommerce website to filter product with categories, brands, size, material and sort with latest product and price.


(more…)

Build Reusable Captcha Script with PHP

A CAPTCHA(Completely Automated Public Turing test to tell Computers and Humans Apart) is a type of challenge code that used in web applications to determine that the action is done by human being.

Captcha code is a combination of some readable text with some distorted shapes to be read only by human being to confirm that the user is not a bot.

There are many third party resources available to easily add Captcha to your web application. But if you’re looking for creating your own custom Captcha code to use in your project then you’re here right place. In this tutorial, you will learn how to create your own reusable Captcha script using PHP to user in your future projects.

We will explain this tutorial step by step with live example to implement Captcha with PHP. We will create a HTML form with input text, Captcha image and submit button to display Captcha and enter into input text to validate form submission with valid Captcha code.

(more…)

Create RESTful API using CodeIgniter

REST (Representational state transfer) API is a set of methods like GET, PUT, POST, DELETE to create web services. The RESTful Web services allow to request to access and manipulate textual representations of data using uniform and predefined set of stateless methods. Web services are useful when develop a application for web and mobile.

In our previous tutorial, you have learned how to create Restful API using PHP and MySQL. In this tutorial, you will learn how to create RESTful API using CodeIgniter.

We will cover this tutorial to create RESTful API with methods GET, PUT, POST, DELETE with live example.

(more…)