Heim >Backend-Entwicklung >PHP-Tutorial >最后关闭数据库时,提示语法错误,新手问题,谢谢

最后关闭数据库时,提示语法错误,新手问题,谢谢

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 14:09:261354Durchsuche

Parse error: syntax error, unexpected T_OBJECT_OPERATOR in F:\www\study\authmain.php on line

session_start();

if (isset($_POST['userid']) && isset($_POST['password']))
{
$userid=$_POST['userid'];
$password=$_POST['password'];

$db_conn=new mysqli('localhost','webauth','webauth','auth');
if (mysqli_connect_errno()) {
echo 'Connection to database failed:'.mysqli_connect_error();
exit();

}

$query='Select * from authorized_users where name='. $userid." and password=sha1('$password')";
$result=$db_conn->query($query);
if ($result->num_rows)
{
$_SESSION['valid_user']=$userid;
}

$db_conn->close();


}
?>


回复讨论(解决方案)

提示哪行出错

请指出出现错误的行号

最后一行close

Parse error: syntax error, unexpected T_OBJECT_OPERATOR in F:\www\study\authmain.php on line 23

最后多了个分号

写错了,是多了个括号,最后的括号去掉。

写错了,是多了个括号,最后的括号去掉。

谢谢!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:请问大神php替换的问题Nächster Artikel:关于COOKIE的问题