此代码工作正常。
$sql = "INSERT INTO EventTest (name,text,lat,lon,date,time,type,number,adress) VALUES ('$name','$text','$lat','$lon','$date','$time','$type','$number','$address')";
$sth = $con->prepare($sql);
$sth->execute();
我在上一个块之后添加了这段代码。
$sql1 = "SELECT id FROM EventTest ORDER BY id DESC LIMIT 1";
$sth1 = $con->prepare($sql1);
$sth1->execute();
$sth1->bind_result($id)
while($sth1->fetch()) {
$data['YES'] = $id;
}
该表包含所有字段。 此代码无效。
我无法从服务器收到错误。
答案 0 :(得分:3)
我看到一个错误,所以我会打赌,并提供一个简短的答案。
在此行的末尾添加分号:
$sth1->bind_result($id);