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 apache # yum…
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 application software. These…
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.
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 tag that is…
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 computer can execute…
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 you can run…
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 to save a…
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 PHP projects and…
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 provide by user…
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 many aspects to…
Read more »