-1

我有这个代码:

echo '<center><h3>More Information</h3><br>';
if ( $story == '') {
} else {
   echo '<h5>'.$story.'</h5>';
}
echo '<table id="tablepress-2" class="tablepress tablepress-id-2">
   <thead>
      <tr class="row-1 odd">
        <th class="column-1"><div>Service</div></th><th class="column-2"><div>Price</div></th>
      </tr>
   </thead>
   <tbody class="row-hover">';

结果是在“更多信息”之后显示多个小于号“< < < < < < < <”。我不知道他们从哪里来。

这是结果:


更多信息

< < < < < < < <

4

1 回答 1

1

根据您的 pastebin 文件: http: //pastebin.com/VGTEsSC4

您有很多</td><可以弥补您的多个<符号。

在您的编辑器中,进行搜索</td><和替换</td>

于 2013-10-10T02:51:53.077 回答