我需要应当地公司的要求建立一个网站。这是一家拥有非常广泛的产品的公司。他们把它们都放在网上。所以我会确保我建立了网站,以便以后可以轻松维护。
那么,有没有办法让您的导航、页眉和页脚固定?因为,有时他们会在他们的分类中添加一种新的产品,所以我不需要更改他们所有页面的导航?
我只使用 html/css,因为这是我学习 ATM 的唯一基础知识。
请帮忙。谢谢
您可以在 html/css 中制作您的网站,这没问题。但是您可以添加一些 php 来包含您的页眉和页脚,如下所示:
<html>
<head>
<title>Your Title</title>
</head>
<body>
<?php include('header.php'); ?> // this is your header. You can include it on every page.
<?php include('home.php'); ?> // this is your homepage. You can change this to for example: about me, products, categories, contact. etc
<?php include('footer.php'); ?> // this is your footer. you can add it on everypage by using this comment. just like the header.
</body>
</html>
然后在你的home.php
你只需像往常一样制作一个 html 页面。PHP在此处包含文档
您也可以在此处使用 Require,信息
希望你能得到它。这真的很有帮助!
使用PHP
你可以做到这一点。您必须在 htmlpage 中为 header 创建一个文件,即“header.php”,然后您必须这样做:-
main.php :-
<html>
<head>
</head>
<body>
<?php include('header.php'); ?>
/* Rest of your html code */
<?php include('footer.php'); ?>
</body>
</html>
header.php :-它将包含您所有的标题 HTML 部分
footer.php :-它将包含您所有的页脚 HTML 部分
主页:- 它将包含您的主容器。在这里你必须包含 header.php 和 footer.php 文件
您只需在每个文件中 包含header.php
和。footer.php
还要确保您必须创建带有扩展名的文件.php
你可以从这里学习 PHP