CCAvenue CCNon-Seamless PG Integration Date Posted: 22 Nov 2018 Prerequisite  :PHP Basics SEAMLESS INTEGRATION This is for Large Scale Product and organisations who have good finance team to jolt down the financials with the Banks for the DIRECT integrations and with PG Aggregators for the INDIRECT integrations and a good Dev team… Continue Reading CCAvenue CCNon-Seamless PG Integration

Edit the profile details using Angular2 Dated on: 25/10/2018 In this post we are going to see how to edit the profile details using angular 2. In previous post we have seen how to create the sign up form Step 1: Create the new component or new project as you… Continue Reading Edit the profile details using Angular2

PHP :: If…Else Statements Date Posted : 25-Oct-2018 Conditional statements are used to perform different actions based on different conditions. Conditional Statements Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this. In PHP… Continue Reading PHP :: If…Else Statements

How to Install PHP 7.x on CentOS 7 Date posted: 19-oct-2018 In this article, we will installing PHP 7.x on CentOS 7 Server. Step 1: Setup the Webtatic YUM repo Precompiled PHP 7.x binaries are available for CentOS 7 from the Webtatic, IUS, or Remi’s RPM repositories. Below are instructions… Continue Reading How to Install PHP 7.x on CentOS 7

How to install and configure Opencart – 3.0.2 On CentOS – 7. DATE POSTED: 19-10-2018 What is Opencart and its real-time purpose in this world ? OpenCart is a free and open source  online e-commerce web application. It is written in PHP and uses MySQL to store its database. It has… Continue Reading How to install and configure Opencart – 3.0.2 On CentOS – 7.

Insert data into database using codeigniter Date posted: 04-oct-2018 Please follow  the steps to insert data into database using codeigniter Step 1: Create a new file under the path Application/controllers/Insert.php.Copy the below given code in your view. <?php class Insert extends CI_Controller { public function __construct() { //call CodeIgniter’s default… Continue Reading Insert data into database using codeigniter

How to upgrade from PHP 7.0 to PHP 7.1 on Ubuntu Posted Date : 21-09-2018 In this post we will explain upgrade from PHP 7.0 to PHP 7.1 on Ubuntu. We assuming that you have have php 7.0 installed in your server. Please follow the and upgrade the php version… Continue Reading How to upgrade from PHP 7.0 to PHP 7.1 on Ubuntu

Date Posted: 10-09-2018 In this Post we will explain create dynamic menu from database using codeigniter. We assuming that you are familiar with CodeIgniter’s MVC structure, so We did not going to explain what model and controller in CI are. Step 1: Please execute the following command and create the… Continue Reading Create dynamic menu from database using codeigniter

Date Posted: 22-12-2017 In this Post we will explain Total amount value with tax using php. Step 1: Create a new file name as index.php and paste the following code. <?php //The VAT rate. $vat =18; //Divisor (for our math). $vatDivisor = 1 + ($vat / 100); //The gross price, including… Continue Reading Total amount value with tax using php