Showing posts from August, 2017Show all
Bootstrap Registration and Login System - Front End

As everyone knows, Bootstrap is a very popular framework for CSS. It is improving day by day and recently, Beta version of Bootstrap V4 has been released. Here I'm going to use Bootstrap V3.3.7 for this tutorial. Registration and login system is an essential p…

Tips to use GitHub simply

Are you confused with Github? Don't the way to use it? Now you have come  to an ideal place to learn how to use it simply. Do not think of it as a mess! Here I will not explain what is GitHub or advantages of using it. I think you are already aware of it. Le…

Database connectivity in CodeIgniter

This is a very important section to create any web application. This is the base. We have to create a database and connect it with the model, to SELECT, INSERT, DELETE or UPDATE the data included in database tables using queries. First you need to create a  data…

How to pass data from Model to View

In this article, I'm trying to explain you how to work with models, views and controllers to fetch data from the model. During this process, first the data is fetched from model by controller and then it passes the data to the view. The flow is going on accord…

Models in CodeIgniter

In CodeIgniter, Models are the files which contains the logical parts such as database connectivity or algorithms. Using a controller function, the data included in a model file can be passed to the front end(view). Let's move on the explanation. First you n…

How to start XAMPP automatically in Ubuntu after reboot

After starting using XAMPP in Ubuntu, there's a common error appeared to the users. That is considered as the failure of starting of Apache web server. We have to stop it and restart it.  Stop Code - sudo /etc/init.d/apache2 stop Start Code - sudo /opt…

How CodeIgniter works

This is my second article on CodeIgniter. I'm also new to this framework. I'll try my best to give you some knowledge. My previous blog post was based on configuration of CodedIgniter. I think you are now familiar with it. Here I'm planning to explain …

Getting started with CodeIgniter

What is CodeIgniter? It is a very famous PHP Framework used in IT industry. CodeIgniter is based on MVC architecture . This is considered as a toolkit for all the PHP developers. And it consists with enhancement and reusability of the PHP codes as it is having many…