How to add Google ReCAPTCHA in PHP Codeigniter Date: 09-05-2020 Introduction: reCAPTCHA is a free service from Google that helps protect websites from spam and abuse. It is verifying a user is a human or robot. Google reCAPTCHA show some images and give hint in text and ask users to select appropriate images… Continue Reading How to add Google ReCAPTCHA in PHP Codeigniter

VALIDATION FORM IN CODEIGNITER USING SESSION LIBRARY Date :28/03/2019 Introduction: The following tutorial implementing form validation using session library in codeigniter. First of all, we should create database and table. we can create database client and we can create table form . To implement the form validation we need to… Continue Reading VALIDATION FORM IN CODEIGNITER USING SESSION LIBRARY

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

Date Posted: 04-09-2018 In this Post we will explain Generate Username from User First and Last Name using codeigniter library Step 1 : Go to folder application -> libraries Step 2 : Create a PHP file with Unique_username_lib.php Step 3 : Add the following code in Unique_username_lib.php. This code is… Continue Reading Generate Username from User First and Last Name – codeigniter library

Posted Date:20-06-2017 In this post we will explain dynamically set codeigniter baseurl. Step 1: navigate to application/config and open config.php file edit $config[‘base_url’] using following code. $config[‘base_url’] = ((isset ( $_SERVER [‘HTTPS’] ) && $_SERVER [‘HTTPS’] == “on”) ? “https” : “http”); $config[‘base_url’] .= “://” . $_SERVER [‘HTTP_HOST’]; $config[‘base_url’] .=… Continue Reading Dynamically set CodeIgniter Base URL

Posted Date:19-06-2017 In this post we will explain Make the <li class> to be Active when click menu Step 1: Include jQuery Plugin necessary  jquery files. <source src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source > <source src=”https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js” type=”text/javascript”></source > <source src=”https://cdnjs.cloudflare.com/ajax/libs/admin-lte/2.3.11/js/app.min.js” type=”text/javascript”></source > Step 2:Add the following jquery script code for dynamic active class var url = window.location.href; // for sidebar… Continue Reading Make the menu to be Active when click menu

Date Posted:13-06-2017 In this post  we will explain export data from database using PHPExcel libary I assume that you are configure or setup the codeigniter Step 1:Create the mysql table currency,use following code — phpMyAdmin SQL Dump — version 3.5.2.2 — http://www.phpmyadmin.net — — Host: 127.0.0.1 — Generation Time: Jun… Continue Reading Export data from Database to Excel Sheet(.xls) using Codeigniter

Date Posted:02-06-2017 In this post  we will explain create new library in codeigniter for currency conversion,symbol I assume that you are configure or setup the codeigniter Step 1:Create the mysql table currency,use following code — phpMyAdmin SQL Dump — version 3.5.2.2 — http://www.phpmyadmin.net — — Host: 127.0.0.1 — Generation Time:… Continue Reading Currency Conversion and Symbol library in CodeIgniter

Date Posted:02-06-2017 In this post We will explain image upload with crop,resize in codeigniter using jquery plugin I assume that you are  configure or setup the codeigniter step 1: Download the jquery.min.js and jquery.Jcrop.min.js,Jcrop.css files and link to script or use cdn link. <source type=”text/javascript”  src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source>  <link rel=”stylesheet” href=”http://jcrop-cdn.tapmodo.com/v0.9.12/css/jquery.Jcrop.css” type=”text/css”… Continue Reading CodeIgniter Image Upload and Crop,resize

Date Posted:29-05-2017 In this post we will explain Run a Codeigniter in a cron job using CPanelin Codeigniter Step 1: Open Cpanel->cronjob Step 2: add command text box below code wget http://domainname.com/Cronjob/sendDailyEmail Step 3:create a new controller give name as Cropjob.php,Create the new  function give name as  as sendDailyEmail  here  add… Continue Reading Run a Codeigniter in a cron job using CPanel