Skip to main content

Posts

Showing posts from February, 2020

Codeigniter 3 tutorial in Hindi (Controller)

"Codeigniter 3 tutorial step by step in Hindi" is a video series for beginners who want to learn the Codeigniter framework from scratch. This video series is perfect for beginner who wants to learn from scratch, during the video series I will cover most of the topics of Codeigniter framework. In this video I have explained how to about codeigniter controller, how to create a controller in Codeigniter, how to use controller in Controller.

Codeigniter 3 tutorial in Hindi (How to configure)

"Codeigniter 3 tutorial step by step in Hindi" is a video series for beginners who want to learn the Codeigniter framework from scratch. This video series is perfect for beginner who wants to learn from scratch, during the video series I will cover most of the topics of Codeigniter framework. In "Codeigniter 3 tutorial step by step in Hindi (How it Works)" video you will learn how Codeigniter works.

Codeigniter tutorial in Hindi (How it Works)

"Codeigniter 3 tutorial step by step in Hindi" is a video series for beginners who want to learn the Codeigniter framework from scratch. This video series is perfect for beginner who wants to learn from scratch, during the video series I will cover most of the topics of Codeigniter framework. In "Codeigniter 3 tutorial step by step in Hindi (How it Works)" video you will learn how Codeigniter works.

Codeigniter tutorial in Hindi (Directory Structure)

Codeigniter Directory Structure If you want to learn a framework you first have to understand the directory structure of a framework, so I've attached a screenshot above.    When you'll download the footprint of the Codeigniter framework from the Codeigniter official website, you will see the directory structure as shown in the above image. Because it has a very small footprint something around 2.6 MB, it is a very fast and stable framework. If you see the screenshot, you will see 4 folders. And each folder has some subdirectories. Now let me explain these directories. application:- This is the folder where we mostly write our business logic. It consists of models, views, controllers, config, and other important stuff. Overall, all your code will be placed under the application directory.       system:-  This is the folder where you will see all the core files of the Codeigniter framework. It is highly advisable to don't make c...

Codeigniter tutorial in Hindi (Introduction)

Codeigniter is an open-source PHP framework that is widely used for creating small/large scale web applications. It is based on the most popular design architecture called MVC. It comes with built-in reusable libraries which enhances the efficiency of a developer while developing an application. MVC design architecture There are many design architecture in programming language and the most popular is MVC. If your application is based on MVC, that simply means, your application has three design layers.  M => Model V  => View C => Controller Model => In a model, we do all the database related operations like fetch or select the data from a database, update a record in the database or delete a record from the database.     View => In a view, we write all the stuff like HTML, CSS, and Jquery. So, we can say the frontend we see in a browser is a view. Controller => Well, In the controller, we write our business logic, it works as...