我有一个header.php和一个footer.php文件。我的 HTML 标头在header.php中 ,并且我有一个index.php文件。
我正在使用(index.php):
require 'header.php';
$example_code = 'example';
︙
require 'footer.php';
还有我的header.php:
<html>
<head>
<title>
???
<title>
<meta name="description" content="???" />
<meta name="keywords" content="???" />
</head>
<body>
︙
我想将一些数据从index.php发送到header.php以在那里打印(参见???
)。我正在考虑这个header()
函数,但我在 PHP 手册中看不到任何示例。