Posts

Showing posts with the label CODEIGNITER

how to use codeigniter framework

Codeigniter    Codeigniter = > folder name  1. Database :-  Codeigniter => Application => config = >database.php 2.    change base url in codeigniter  Codeigniter => Application => config => config.php     $config['base_url']= 'http://localhost/CodeIgniter/'; 3.    create a welcome message in codeigniter  static page 3.1  Codeigniter => Application => controllers => hello.php (first page) <?php   class  Hello  extends  CI_Controller  {           public  function  you ()     {          $this -> load -> view ( 'my_view' );  ...