下面是我的代码
<?php
//Vars
$alreadylogged = 0;
$username = 0;
//End Var
//Start Script
print 'Welcome to CraftedList!</br>'
if ($alreadylogged=="1") *Side note, this line is line 34*
{
print 'You are currently logged in as'. $username .'!';
}
else
{
print 'You are not logged in!'
}
?>
但是当我在 localhost XAMPP 客户端上执行它时,它会返回此错误。
解析错误:语法错误,第 34 行 C:\xampp\htdocs\phptest\index.php 中的意外 'if' (T_IF)
我检查了 W3 Schools,我的代码与他们的相似。