How to Create Application at CodeIgniter ?

chinmay.sahoo

New member
First, we make controller, create a file name "hello.php" within: \system\application\controllers. Enter following code:

Next step, make a view. Create you_view.php within CodeIgnitersystemapplicationviews. Enter just simple line code like: 1 Hello, you!

Now, test your application. Point your browser to
You should get like this:
 
CodeIgniter is a powerful PHP framework that can help you greatly speed up the development of your web applications. It is has a small performance footprint due to the modular approach to loading its libraries and does a great job separating logic from presentation by using a Model-View-Controller (MVC) dynamic.
 
Back
Top