Skip to main content

How to create a page using View file and Controller class

How to create a website using View file and Controller class:- 

1   Create a Controller and define five different Method

<?php
class Guest extends CI_Controller
{
    function index()
    {
       $this->load->view('header');
       $this->load->view('home');
       $this->load->view('footer');
    }
    function about()
    {
       $this->load->view('header');
       $this->load->view('about');
       $this->load->view('footer');
    }
    function service()
    {
       $this->load->view('header');
       $this->load->view('service');
       $this->load->view('footer');
    }
    function gallery()
    {
        $this->load->view('header');
       $this->load->view('gallery');
       $this->load->view('footer');
    }
    function contact()
    {
       $this->load->view('header');
       $this->load->view('contact');
       $this->load->view('footer');
    }




}





?>

2 Create view file Under views folder using header.php,footer.php,home.php,about.php,contact.php,service.php,gallery.php

header.php
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="<?php echo base_url(); ?>/css/style.css"   type="text/css" rel="stylesheet"  />
</head>
<body>
<header>

<nav>
<ul>
<li><a href="<?php echo site_url(); ?>/guest/index">home</a></li>
<li><a href="<?php echo site_url(); ?>/guest/about">about</a></li>
<li><a href="<?php echo site_url(); ?>/guest/service">service</a></li>
<li><a href="<?php echo site_url(); ?>/guest/gallery">gallery</a></li>
<li><a href="<?php echo site_url(); ?>/guest/contact">contact</a></li>
</ul>

</nav>

</header>


........................................................................................................
footer.php

<footer>
<center>&copy;2019 by SCS</center>
</footer>
</body>
</html>
.......................................................................................................................

home.php
.....................................

<section>

<img src="<?php echo base_url(); ?>/img/banner.jpg" style="width:100%;" height="450" />
<hr>
<p>
We are providing a post for IT Programming languages for JAVA .NET, PYTHON, PHP, ML, DATA SCIENCE, MACHINE Learning, and Many more. Best Java Training in Indore, Python Training in Indore, Online Classes in Indore, Machine Learning Programming in Indore, Data Science Programming in Indore. for more info http://shivaconceptsolution.com/contact-us/index.html
</p>
</section>

...................................................

about.php,contact.php,services.php,gallery.php

<section>

 </section>


3 define the controller method and call header, page, footer file

function index()
{
    $this->load->view('header');
    $this->load->view('home');
    $this->load->view('footer');

}

define all method similar to this only change page name, header and footer will be same


4 create style.css file and define the properties of the web page.\
style.css file will be created in the project folder means outside of the application folder

create a separate folder and define the style.css
*
{
margin:0px;
}

header
{
height: 100px;
background-color: orange;
}

nav
{

margin-left: 5px;
}
nav ul li
{
display: inline-block;
margin-left: 10px;

}
nav ul li a
{
color:white;
text-transform: uppercase;
text-decoration: none;
font-size: 25px;
font-weight: bolder;
}
section
{
   height: 540px;
   background-color: gray;

}
footer
{
height: 50px;
background-color: orange;
}

5 link CSS file under header.php file <head></head>

<link href="<?php echo base_url(); ?>/css/style.css"   type="text/css" rel="stylesheet"  />

6 Change routes.php $routes['default_controller']= 'guest'


7 Create Menu to navigate from one web page to another
 

8 Design menu using style.css




SHOW COMPLETE VIDEO IN YOUTUBE BY SHIVA SIR

How to create a website using View file and Controller class 







 


Comments

Popular posts from this blog

DSA in C# | Data Structure and Algorithm using C#

  DSA in C# |  Data Structure and Algorithm using C#: Lecture 1: Introduction to Data Structures and Algorithms (1 Hour) 1.1 What are Data Structures? Data Structures are ways to store and organize data so it can be used efficiently. Think of data structures as containers that hold data in a specific format. Types of Data Structures: Primitive Data Structures : These are basic structures built into the language. Example: int , float , char , bool in C#. Example : csharp int age = 25;  // 'age' stores an integer value. bool isStudent = true;  // 'isStudent' stores a boolean value. Non-Primitive Data Structures : These are more complex and are built using primitive types. They are divided into: Linear : Arrays, Lists, Queues, Stacks (data is arranged in a sequence). Non-Linear : Trees, Graphs (data is connected in more complex ways). Example : // Array is a simple linear data structure int[] number...

JSP Page design using Internal CSS

  JSP is used to design the user interface of an application, CSS is used to provide set of properties. Jsp provide proper page template to create user interface of dynamic web application. We can write CSS using three different ways 1)  inline CSS:-   we will write CSS tag under HTML elements <div style="width:200px; height:100px; background-color:green;"></div> 2)  Internal CSS:-  we will write CSS under <style> block. <style type="text/css"> #abc { width:200px;  height:100px;  background-color:green; } </style> <div id="abc"></div> 3) External CSS:-  we will write CSS to create a separate file and link it into HTML Web pages. create a separate file and named it style.css #abc { width:200px;  height:100px;  background-color:green; } go into Jsp page and link style.css <link href="style.css"  type="text/css" rel="stylesheet"   /> <div id="abc"> </div> Exam...

Top 50 Most Asked MERN Stack Interview Questions and Answers for 2025

 Top 50 Most Asked MERN Stack Interview Questions and Answers for 2025 Now a days most of the IT Company asked NODE JS Question mostly in interview. I am creating this article to provide help to all MERN Stack developer , who is in doubt that which type of question can be asked in MERN Stack  then they can learn from this article. I am Shiva Gautam,  I have 15 Years of experience in Multiple IT Technology, I am Founder of Shiva Concept Solution Best Programming Institute with 100% Job placement guarantee. for more information visit  Shiva Concept Solution 1. What is the MERN Stack? Answer : MERN Stack is a full-stack JavaScript framework using MongoDB (database), Express.js (backend framework), React (frontend library), and Node.js (server runtime). It’s popular for building fast, scalable web apps with one language—JavaScript. 2. What is MongoDB, and why use it in MERN? Answer : MongoDB is a NoSQL database that stores data in flexible, JSON-like documents. It...