Heim > Fragen und Antworten > Hauptteil
$result=mysqli_query($sql,$con)
if($row=mysqli_fetch_assoc($result){}
Warum wird die if-Bedingung nicht ausgeführt
寻觅 beyond2018-02-02 16:27:52
没报错的话,就表示执行了
你可以打印一下$result的内容,还有就是,
你确定你的mysqli_query的两个参数位置没有放错?????
phpcn_u1029452018-01-28 16:59:39
if($row=mysqli_fetch_assoc($result){}
少个括号,看系统提示,应该能找出来!
正确:if($row=mysqli_fetch_assoc($result)){}