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');
    }
}
?>
3.2    Codeigniter => Application => views => my_view.php
<html>
<title> my first page </title>
<body>
<h2> Welcome in codeigniter Framework </h2>
</body>
</html>
4. open url 
http://localhost/CodeIgniter/index.php/Hello/you
 
 
Comments
Post a Comment
If you Satisfied , Please Leave a comment