所以假设我有这个 code.txt 文件:
<html>
<head>
<title><?php echo $title; ?></title>
</head>
<body>
<?php echo $content; ?>
</body
<html>
每当我想添加一个页面时,我只需创建一个名为 page.php 的文件:
<?php
$title="page title";
$content="Page content coded in html";
require 'code.txt';
?>
每当我在 $content 字符串上添加 HTML 元素(如超链接)时,page.php 文件都会在浏览器上返回 HTTP 错误 500。我该如何解决 ?