-1

我收到此错误:

解析错误:语法错误,第 131 行 C:\xampp\htdocs\assurance\confirmation.php 中的意外 '!=' (T_IS_NOT_EQUAL)

这是我的代码的第 131-134 行:

if ($_POST['password']) != ($_POST['confirm'])  { 
echo '<p class="error">Your passwords do not match.</p>';
$okay = FALSE;
}
4

2 回答 2

1

用这个

if ($_POST['password'] != $_POST['confirm'])  { 
    echo '<p class="error">Your passwords do not match.</p>';
    $okay = FALSE;
}
于 2014-02-15T16:03:30.967 回答
1
if ($_POST['password'] != $_POST['confirm'])  { 
echo '<p class="error">Your passwords do not match.</p>';
$okay = FALSE;
}

if 语句的语法是

if (expr)
  statement

http://www.php.net/manual/en/control-structures.if.php

于 2014-02-15T16:03:24.077 回答