使用 HTML 和 php 时包含文件的正确位置在哪里?
在 HTML 代码之前:
<?php include 'file.php' ?>
<html>
<head>
</head>
<body>
</body>
</html>
在头部标签中:
<html>
<head>
<?php include 'file.php' ?>
</head>
<body>
</body>
</html>
在正文标签中:
<html>
<head>
</head>
<body>
<?php include 'file.php' ?>
</body>
</html>