我在两个单独的页面上使用相同的代码行,但一个显示而另一个不显示?

时间:2015-02-27 22:53:44

标签: php html

现在我知道之前有过类似的问题,但请耐心等待。所以我在两个单独的页面上使用相同的代码行,但是一个显示而另一个不显示。会导致这种情况的原因是什么?

以下代码分别位于上述两个页面中的每一个:

<?php include("footerblock.php"); ?>

这里引用了这段代码:

<?php session_start(); ?>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head><body>
<table style="text-align: center; width: 100%;" border="0" cellpadding="0" cellspacing="0">
<tbody><tr><td style="text-align: center;">
<?php
$cmtx_identifier = 'cmtx_reference';
$cmtx_reference = 'cmtx_url';
$cmtx_path = 'comments/';
require $cmtx_path . 'includes/commentics.php'; //don't edit this line
?>
</td>
</tr></tbody></table></body></html>

1 个答案:

答案 0 :(得分:0)

  1. 请不要使用内联样式(style =&#34; ...&#34;)。这是一种不好的做法。
  2. 确保您的源文件以UTF-8编码。检查代码编辑器设置或尝试切换到Sublime Text。为此,请更改设置并再次保存所有文件。
  3. 尝试在PHP文件之上使用此功能。 http://php.net/manual/en/function.mb-internal-encoding.php