Skip to main content

Codeigniter Tutorials


Codeigniter Tutorial in Hindi (Youtube video series)

Codeigniter tutorial in Hindi (Introduction and Installation) | part 1 🔥 2020
Codeigniter tutorial in Hindi (Directory Structure) | part 2 | 🔥 2020
Codeigniter tutorial in Hindi (How it Works) | part 3 🔥 2020
Codeigniter tutorial in Hindi (How to configure) | part 4 🔥 2020
Codeigniter tutorial in Hindi (Controllers) | part 5 🔥 2020
Codeigniter tutorial in Hindi (Views) | part 6 🔥 2020
Codeigniter tutorial in Hindi (Model #1) | part 7 🔥 2020
Codeigniter tutorial in Hindi (Active Record Class) | part 8 🔥 2020
Codeigniter tutorial in Hindi (Model #2) | part 9 🔥 2020
Codeigniter tutorial in Hindi (Libraries) | part 10 🔥 2020
Codeigniter tutorial in Hindi (Helpers) | part 11 🔥 2020
Codeigniter tutorial in Hindi (Custom Helper) | part 12 🔥 2020
Codeigniter tutorial in Hindi (Custom Library) | part 13 🔥 2020
Codeigniter tutorial in Hindi (Extending Libraries) | part 14 🔥 2020
Codeigniter tutorial in Hindi (Extending Helpers) | part 15 🔥 2020

Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. Hello Sir, I want Codeigniter version 3 CI web application source code. Please provide me.

    ReplyDelete
  3. Hi Sir How are you
    Sir i want source code of this site please sent me

    ReplyDelete

Post a Comment

Popular posts from this blog

Codeigniter tutorial in Hindi ( get_instance() )

"Codeigniter tutorial for beginners step by step in Hindi 2020" is a video series for beginners who want to learn the Codeigniter framework from scratch. This Codeigniter tutorial video series is perfect for beginners who want to learn from scratch, during the video series I will cover most of the topics of Codeigniter framework. Topic:- In this video, I have explained about get_insance() method. In Codeigniter custom libraries or custom helpers, you will not be able to access Codeigniter resources using $this super object. For this situation, we use &get_insance() and it returns a reference of the super object Syntax $CI = & get_insance(); Now we are able to access Codeigniter resources the way given below:- $CI→load→library(''yourLibraryName'); $CI→yourLibraryName→yourMethod()

Codeigniter tutorial in Hindi (Helpers)

"Codeigniter tutorial for beginners step by step in Hindi 2020" is a video series for beginners who want to learn the Codeigniter framework from scratch. This Codeigniter tutorial video series is perfect for beginners who want to learn from scratch, during the video series I will cover most of the topics of Codeigniter framework. Topic:- Codeigniter has two types of facilities that can help in the development of the application these are Libraries and Helpers. All the CodeIgniter libraries and helpers are placed in the system folder.

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...