【发布时间】:2011-03-26 16:18:06
【问题描述】:
<?php
// This is index.php
ob_start();
include 'tem/u.html';
ob_end_flush();
?>
<html>
<!-- This is u.html -->
<link rel="stylesheet" href="style.css" media="screen" />
<body>
<p> abc </p>
</body>
</html>
现在我的问题是当我运行 h.html -> 风格正常。
但是当我运行 index.php -> Ok without style 时(因为现在 index.php 包含 style.css,而不是 tem/style.css)
需要修复
【问题讨论】:
标签: php