Tuesday, February 1, 2011

Hello World Using CodeIgniter

Just type blog.php file in application/controllers directory

<?php

class Blog extends CI_Controller{

    function index()
    {
        echo "Hello, World!";
    }
}

?>

Then direct your browser to localhost/ci/index.php/blog

No comments:

Post a Comment