Convert HTML Template to WordPress Theme – Part1
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…
Learn by easy steps
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…
Steps: 1. Create a simple form using bootstrap or without bootstrap. <!doctype html> <html ng-app> <head> <meta charset="utf-8"> <title>Form validation using Angularjs</title> <script src="angular.js"></script> <link…
Steps: 1. Create a Controller php artisan make:controller TestController 2. Copy the bootstrap folder in laravel public directory 3. Create a master view file for…
Steps: 1.Create a migration file for admin user. php artisan make:migration add_is_admin_to_user_table --table=users 2. Add is_admin field to user table public function up() { Schema::table('users',…