Skip to main content

About Us

About Me

🔥🔥🔥🔥

My name is Mohit Singh and I am a Full Stack PHP Developer, and I love helping people in becoming developers there is too much to learn in my videos.

I am a Youtuber too and I have you channel name "PHP TECH LIFE

Click Here to learn more.

You can follow me on Instagram:-
👍👍👍👍 https://www.instagram.com/mohitsingh2006/

Comments

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