How to install and setup Codeigniter 3

Codeigniter is a lightweight PHP-based framework to develop the web application. It is based on MVC (Model View Controller) pattern.

  • The model handles the data processing – Return data, Insert, Update, or delete records from Database Table.
  • The view displays the final output.
  • The controller manages the Model and view. It handles the users’ inputs.

In this tutorial, I show how you can setup the CodeIgniter 3 project and create a page.

How to install and setup Codeigniter 3

Read more

Add Bootstrap Tooltip: Elevate Your Website’s User Experience

Bootstrap tooltip offers a powe­rful tool for enhancing the user e­xperience of a we­bsite. These small pop-up boxe­s provide valuable information, explanations, and conte­xt when users interact with spe­cific elements.

By imple­menting Bootstrap tooltip, websites can e­ffectively guide use­rs, improve usability, and create an e­ngaging interface.

This article e­xplores the process of adding a Bootstrap tooltip to e­levate the use­r experience­ on your website.

I am using Bootstrap 5 in this tutorial.

Add Bootstrap Tooltip: Elevate Your Website's User Experience

Read more

Take screenshot of webpage with Html2Canvas

Html2Canvas is a JavaScript library that allows you to take a screenshot of the entire web page or a specific section with just a few lines of code.

It returns an HTML5 canvas element when it is initialized on the element that you can use to create a new image file or display a screenshot preview on the screen.

In this tutorial, I show how you can use Html2Canvas library to take a screenshot and save it to the server using PHP.

Take screenshot of webpage with Html2Canvas

Read more