How to upload folder using HTML and PHP
File or list of files can be uploaded easily to the server by using HTML form and PHP. But uploading any folder that contains list…
Learn by easy steps
File or list of files can be uploaded easily to the server by using HTML form and PHP. But uploading any folder that contains list…
Magento is a popular eCommerce framework now. To start working with this CMS you have to install it in your web server properly. This tutorial…
Follow the steps shown below to convert an HTML template into a CodeIgniter project. Steps: 1. Download CodeIgniter3 from CodeIgniter site. 2. Download any free…
Steps: 1.Create a new Laravel Project. laravel new newproject 2. Go to the project folder and add laravel default authentication in your project cd newproject 3.…
Any WordPress theme can be developed by two ways. You can develop the theme based on any HTML template or the theme can be developed…
Steps: 1.Add code in functions.php file for custom navigation menu register_nav_menus(array('primary'=>__('primary menu', 'saloon'))); 2. Add a primary menu from admin panel 3. Modify the menu…
This tutorial will help you convert any html template to wordpress theme. You can download any free template and follow this tutorial to convert it…
Steps: 1. Create a folder named react-php in htdocs folder to create PHP files to communicate with mysql database. 2. Create another folder api under…
Steps: 1. Create Signup.js with the following code under Signup folder. import React, {Component} from 'react'; import {PostData} from '../../services/PostData'; import {Redirect} from 'react-router-dom'; class…
A very simple project of ReactJS is shown in this tutorial. Here, the authentication system is developed and feed entries are managed based on login…