<head>
<title>Login</title>
<?php
if($verhalten == 1)
{
/* The important line */
?>
<meta http-equiv="refresh" content="3; URL=seite2.php"/>
<?php
}
?>
</head>
...
这是我的一般代码。问题是PHP告诉我有一个意想不到的&#39;&lt;&#39;在第38行(我标记的行),即使该行是完全空的。我已经阅读了其他问题,但似乎没有人帮助我。它只是一个愚蠢的错误,但你告诉我它在哪里会很好,因为我不知道它可能在哪里。
答案 0 :(得分:0)
我认为这就是你要做的。这不应该抛出任何错误。
<head>
<title>Login</title>
<?php
if($verhalten == 1)
{
echo '<meta http-equiv="refresh" content="3; URL=seite2.php"/>';
}
?>
</head>