你能帮帮我吗,我正在学习会话的概念,它可以帮助我用户登录。我做了以下 php 代码,但收到了这个错误:解析错误:语法错误,意外的 T_STRING,期待','或' ;' 在第 12 行的 C:\wamp\www\w3\login.php 中。
<?php
session_start();
echo " <html>
<body>
<br/>
<table border = '0' width = '100%' height = '100%'><tr>
<td width = '30%' height = '100%'> </td><td valign = 'top'>
<a href='display.html'>Display</a>";
if(!isset($_SESSION['loged'])){
echo " <fieldset><legend>Log In</legend>
<center><table border = '0'>
<form action="log.php" method="post">
<tr><td>Username:</td><td><input type="text" name="username" /></td></tr>
<tr><td>Password:</td><td><input type="password" name="pwd" /></td></tr>
<tr><td colspan = '2' align = 'center'><input type="submit" value="submit" /></td></tr>
</form>
</table></center>
</fieldset> ";
}
else{
header(location:index.html);
die();
}
echo " </td><td width = '30%' height = '100%'> </td>
</tr></table>
</body>
</html>";
?>