-1

所以假设我有这个 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。我该如何解决 ?

4

1 回答 1

5

不要.txt为 PHP/HTML 使用文件扩展名。使用扩展 PHP 将识别 like.php.inc.

于 2013-03-28T13:55:01.623 回答