我的网站工作正常,突然在身体标签后出现斜线。我试图找出错误但我没有运气。 如何解决这个问题?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Toucan | <?=$title?></title>
<?php $this->load->view('include/head'); ?>
</head>
<body>
<div id="container">
<?php $this->load->view('include/header'); ?>
<?= $slideshow ?>
<table id="main">
<tr>
<?php if ($sidebar):?>
<td width="150px"><div id="sidebar"><?= $sidebar ?></div></td>
<?php endif; ?>
<td><div id="content"><?= $content ?></div></td>
</tr>
</table>
<?php $this->load->view('include/footer'); ?>
</div>
</body>
</html>
答案 0 :(得分:1)
您应该查看控制器的末尾,以检查您是否有PHP结束标记:?>
。也许像/
之类的东西......
这是脚本末尾omit the PHP closing tag的好习惯。
答案 1 :(得分:0)
我只是google你的网页(toucan-eng.com),并在主网页上显示斜杠。 title
标记应位于head
标记内,然后您需要放置body
标记。希望这可以帮到你