Skip to main content

User Registration and Login System with PHP & MySQL

User registration and login is an important feature of web applications to allow user to manage their account. The user registration is allowed to visitors to maintain their profiles and access to certain sections.

So if you’re looking for implementing user registration and login system then you’re here at the right place. In our previous tutorial you have learned how to Filter Search Result with Ajax, PHP & MySQL. In this tutorial, you will learn how to implement user registration and login using PHP and MySQL.

We will gone through step by step to create live example of user login and registration script with PHP and MySQL.

(more…)

Build Contact Form with PHP and Ajax

Contact Form or Feedback form is an important page that’s generally used in every website to make contact with their visitors. Contact Form is basically a set of questions that’s need to be filled by website users to give feedback or queries to website owner. When contact form submitted with details, an email with details is automatically send to the website owner.

So if you’re looking for implementing contact form in your website, then you’re here at the right place. In our previous tutorial, you have learned to create Event Calendar with jQuery, PHP & MySQL. In this tutorial you will learn how to implement Bootstrap Contact From with PHP and jQuery Ajax. We will create Bootstrap contact form and implement form input validation and submit form with Ajax and finally send email to the website owner.

We will cover this tutorial in easy steps with live example to create Bootstrap contact form with validation and send email.

(more…)

Build Dynamic Image Gallery with PHP & MySQL

Image Gallery or Photo Gallery is a popular feature of web applications to allow users to upload and manage images. The dynamic image galleries are created in web application to allow users to upload or delete images and display with features like scroll and lightbox to view images.

If you’re looking for solution to create dynamic image gallery, then you’re here at the right place. In our previous tutorial you have learned how to upload multiple images with jQuery and PHP and crop image and upload with jQuery and PHP. Here in this tutorial, you will learn how to create dynamic image gallery using PHP and MySQL.

The tutorial explained in easy steps with live demo to allow user login, upload and manage images in their gallery and display with lightbox.

dynamic image gallery with php mysql

(more…)

Create REST API with PHP & MySQL

In our previous tutorial, we have explained how to create REST API with Node.js, Express & MongoDB. In this tutorial, we will explain how to create REST API with PHP & MySQL.

REST stand for “Representational State Transfer” is a concept of managing data on internet. The REST API’s are created and consumed by all kinds of applications to use data and perform operations.

Currently REST APIs are used in most of applications because it’s light weight as its mostly represented by JSON to perform CRUD (create, read, update, delete) operations by different applications.

So if you’re looking for best solution to create REST API, then you’re here right place. In this tutorial you will learn how to create simple RESTful API with CRUD operation using PHP and MySQL.

(more…)

How to Map Components in React

In our previous tutorial, we have listed Best PDF Viewer Component for React. In this tutorial, we will explain about Mapping Components in React.

As the React takes regular JavaScript data and turn into HTML, so here we will see how easily we can turn our array data into HTML elements.

Suppose you have employee list in an array and wants to turn that into <li> elements. The map() function from JavaScript do the magic to achieve our goal. It will help to loop through array and create new HTML elements for each record in an array. It will help to display elements like this. (more…)