0

以下は私のコードです

        <?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 クライアントで実行すると、このエラーが返されます。

解析エラー: 構文エラー、C:\xampp\htdocs\phptest\index.php の 34 行目の予期しない 'if' (T_IF)

私は W3 Schools をチェックしましたが、私のコードは彼らのものと似ています。

4

2 に答える 2

6

あなたは欠けています;

print 'Welcome to CraftedList!</br>';
                                    ^ here
于 2013-02-27T01:29:22.397 に答える
2

行方不明;

ここ:

print 'Welcome to CraftedList!</br>'

そしてここ:

print 'You are not logged in!'
于 2013-02-27T01:32:47.897 に答える