Welcome to my site
CodeIgniter is PHP driven framework but it's not a PHP substitute. Diving into CodeIgniter doesn?t mean you are leaving PHP behind. PHP is a server-side scripting language for building dynamic web-based applications.
📅  最后修改于: 2021-01-01 03:25:03             🧑  作者: Mango
在这里,我们将学习如何在CodeIgniter的帮助下创建基本站点。
在controllers文件夹中,我们将创建一个名为Form.php的文件。
load->view('header');
$this->load->view('nav');
$this->load->view('content');
$this->load->view('footer');
}
}
?>
我们为页眉,导航,内容和页脚创建了不同的文件,所有这些文件均已加载到contoller的文件中。
应用程序/视图中的文件header.php
Basic Site
在应用程序/视图中文件nav.php
在application / views文件中的content.php文件
Welcome to my site
CodeIgniter is PHP driven framework but it's not a PHP substitute.
Diving into CodeIgniter doesn?t mean you are leaving PHP behind.
PHP is a server-side scripting language for building dynamic web-based applications.
在应用程序/视图中的文件footer.php
最终输出如下所示,URL为localhost / site_example / index.php / Form。