Steps:1. Before starting this tutorial, you have to complete the previous tutorial that converts any HTML template into reactJS project. How you can make a particular portion of the reactJS project dynamic using reactJS, PHP and MySQL is shown in this tutorial. You have to install xampp server for starting the steps of this tutorial. […]
Read MoreEmail tracking is an important task for web developer. You can keep the records of the emails which are opened by the receivers. How you can send email using PHPMailer and keep track of your sending emails are shown in this tutorial. But if you are working in the local server then you have to […]
Read MoreSession handling is a basic requirement for any type PHP based web project. If the project requires user registration and login options, then it is necessary to implement session handling feature for the project. How to create session and handle session for a particular user by using PHP and MySQL are shown in this tutorial […]
Read MoreThere are many ways to send email using PHP script. PHPMailer is one of the ways to send email using PHP. It is a PHP library that contains various functions to send email in different ways. The email sending operation can be tested from localhost by using PHPMailer. How you can send email in text […]
Read MoreFile or list of files can be uploaded easily to the server by using HTML form and PHP. But uploading any folder that contains list of files or other folders is a little complicated task. This tutorial will help you to learn the way to upload any folder to the server by using HTML form […]
Read MoreSteps: 1. Create a table named `employee_basics` by running following SQL, CREATE TABLE `employee_basics` (`id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `gender` varchar(6) NOT NULL, `address` varchar(255) NOT NULL, `phone` varchar(50) NOT NULL, `post` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`)); 2. Create a folder named phpCRUD in htdocs folder. 3. Download the following files […]
Read More