我正在尝试更新我的数据库中的记录,但在提交表单后,它不会返回到委员会页面.php并且记录不会更新。我的查询有问题吗?
[self.player replaceURIs:tracks withCurrentTrack:0 callback:^(NSError *error) {
if(error){
NSLog(@"*** Error occurred while trying replace playing track %@", error);
return;
}
}];
答案 0 :(得分:0)
您的查询错误。使用此
$query = "update details set title='$title', page_no='$pageno',
author='$author', article_status='$article_status',
sketch_status='$sketch_status', final_approve_person='$final_approval_person',
final_approve_date='$final_approval_date', status='$status' where id=$id";
此处不需要逗号status='$status', where id=$id
还在where子句中为$ id添加单引号。