UPLOAD FILE Using CODEIGNITER FRAMEWORK Date posted :03/04/2019 Most importantly, in this tutorial we are going to upload the file using PHP- codeigniter framework. It has upload library for upload the file. pre-requesties 1)However create a uploads directory at the project root to store files. 2)After that, we need to… Continue Reading UPLOAD FILE USING CODEIGNITER FRAMEWORK

Create contact form with php Date posted : 13/02/2019 In this post we will explain how to create the contact form with php. Customer will contact the website owner using this contact form. Step 1: Create the contact form using the following code. Step 2: Create the send_form_email and paste… Continue Reading Create contact form with php

PHP Script for CRUD Application Date :06/12/2018 What is CRUD? CRUD refers to the four basic types of Database operations: Create, Read, Update, Delete. Most applications and projects perform  CRUD functionality. This is a important script for all PHP beginners. Once you learn about these CRUD operations, you can use them… Continue Reading PHP Script for CRUD Application

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.

Date Posted: 05-02-2018 In this post, we will explain how to install mcrypt for php  on mac os high sierra for a Development Server. Step 1:  Search the package: brew search mcrypt Result: ==> Searching local taps… homebrew/php/php71-mcrypt mcrypt homebrew/php/php53-mcrypt homebrew/php/php54-mcrypt homebrew/php/php55-mcrypt homebrew/php/php56-mcrypt homebrew/php/php70-mcrypt libtomcrypt Step 2: Search my php version to… Continue Reading Install mcrypt for php on macos high sierra for a Development Server

Posted Date:04-08-2017 In this post we will explain dynamic column header and result from ajax call in jquery datatable   Step 1: Include jQuery  Plugin and css <link rel=”stylesheet” type=”text/css” href=”http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/css/jquery.dataTables.css”> <source src=”http://code.jquery.com/jquery-2.2.4.min.js” integrity=”sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=” crossorigin=”anonymous”></source> <source type=”text/javascript” charset=”utf8″ src=”https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js”></source> Step 2: Add the following script for data table initialization with… Continue Reading dynamic column header and result from ajax call in jquery datatable

Posted Date:27-07-2017 In this post we will explain show the accordion panels based on drop down values .   Step 1: Include jQuery  Plugin and css <source src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source> <source src=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js”></source> <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css”> Step 2: Add the following script $(function() { var divs = $(‘#accordion > div’).hide(); $(document).on(‘change’, ‘#select_value’, function(e)… Continue Reading Show the accordion panels based on drop down values

Install PHP with WebPI Open WebPI search for PHP Select required versions and click on Add Click on Install Accept the license Click Finish Installation path would be C:\Program Files (x86)\PHP\%version To quickly verify its working, place info.php under docroot C:\inetpub\wwwroot.  You can verify it using http://localhost/info.php <?php phpinfo(); ?>