Date Posted:07-06-2017 In this we will explain jquery validation on two forms in different forms Step 1:Add the necessary jquery file in html head section after body tag add the following code <form id=”form1″>Step #1 <input type=”text” name=”field1″ /><br /> <button type=”button” id=”gotoStep2″>Go to step 2</button> </form> <form id=”form2″>Step #2… Continue Reading JQuery Validation on Two Forms in different Tabs

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

Introduction Cron jobs are commonly used to automate repetitive tasks on a server, such as sending scheduled emails, generating reports, running database operations, cleaning temporary files, or executing application-specific tasks. In this tutorial, we will explain how to run a CodeIgniter controller function automatically using a cron job in cPanel.… Continue Reading Run a Codeigniter in a cron job using CPanel

Introduction Sending emails with HTML templates in CodeIgniter makes it easy to create professional and visually appealing email messages. Instead of writing the complete HTML content directly inside the controller, you can create a separate email template and load it dynamically when sending the email. In this guide, we will… Continue Reading How to send email using HTML templates in Codeigniter?

Introduction CodeIgniter 3 provides a simple routing mechanism for defining the default controller of an application. By default, the controller is generally placed directly inside the controllers directory. In some applications, controllers are organized into subfolders to maintain a better project structure. In this guide, we will explain how to… Continue Reading How To Use a Subfolder in Default Controller Route In Codeigniter 3

Introduction A dependent dropdown list is a common feature used in web applications where the options in one dropdown depend on the value selected in another dropdown. For example, when a user selects a country from the first dropdown, the second dropdown can automatically display the states or regions belonging… Continue Reading Dynamic dependent drop-down list using HTML, PHP, MySQL, and AJAX

Introduction A dropdown list is a common form element used to allow users to select one option from a predefined list. In many web applications, the dropdown values need to be retrieved dynamically from a database instead of being manually added to the HTML code. In this post, we will… Continue Reading How to Create a Dynamic Dropdown List Using PHP and MySQL

Introduction When hosting PHP applications with Apache and PHP-FPM/FastCGI, you may encounter 500 Internal Server Error responses when a PHP request takes longer than the configured FastCGI idle timeout. A common indication of this issue is the following error in the Apache error log: This typically occurs when the PHP… Continue Reading FastCGI: Communication with Server Aborted Due to Idle Timeout

Introduction PHP-FPM (FastCGI Process Manager) is an alternative to running PHP through the traditional mod_php Apache module. It provides better process management and can improve PHP application performance, especially on servers handling multiple PHP requests. In this guide, we will explain how to install and configure Apache with PHP-FPM on… Continue Reading Install Apache with php-fpm on Ubuntu 16