Preparing steps for LAMP Installation

Apache install on Centos 7 MYSQL(MariaDB) install on Centos 7 PHP install on Centos 7 Apache install on Centos 7 Check OS version # cat /etc/*release Install…

Read More

What is LAMP Stack?

What is Stack? The term stack(derived from “solution stack”) refers to a collection of different software programs that “stack” together to create a plateform necesary to support…

Read More

Python Tutorials: Relational/ Comparison Operators In Python

Relational operators are used to compare the value of operands (expressions) to produce a logical value. A logical value is either True or False. Amardeep DubeyMotoShare.in is…

Read More

Python Tutorials: Variables In Python

In C, Java or some other programming languages, a variable is an identifier or a name, connected to memory location. In Python, a variable is considered as…

Read More

Python Tutorials: Python Virtual Machine

Python Virtual Machine (PVM) is a program which provides programming environment. The role of PVM is to convert the byte code instructions into machine code so the…

Read More

Searching, Column Sorting with Pagination using Ajax in Laravel 5.5

Step 1 : Instal Laravel Application  If you have not install Laravel application, then you have to open command prompt, and run composert command, and then after…

Read More

User registration using nodejs and mysql with example

In this tutorial, I am going to create simple register a user and display the data on dashboard using nodejs and mysql.This tutorial will explain only how…

Read More

Setting a Local Development Environment for Laravel on Windows | Install Laravel on Windows

Many developers use Windows for PHP projects, we will cover a basic XAMPP Setup for a Laravel project. Following these easy steps will help you run your…

Read More

Password Hashing in PHP

Functions for hashing password password_hash() password_verify() password_hash() – Syntax: [code language=”php”] string password_hash(string $password , integer $algo [, array $options ] ) [/code] string $password – Password…

Read More

PDO – PHP database extension

PDO – PHP database extension PDO (PHP Data Objects) is a PHP extension through which we can access and work with databases. Though PDO is similar in…

Read More