php sql语法出问题了
$sqlstr1="'insertintowiki.wiki_doc(authorid)values('$creatorid')wheretitle='.$newtitl...
$sqlstr1="'insert into wiki.wiki_doc (authorid) values('$creatorid')where title='.$newtitle and 'content='.$newcontent";
错误信息:
failYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
谁能帮忙看看这应该如何编写才正确? 展开
错误信息:
failYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
谁能帮忙看看这应该如何编写才正确? 展开
展开全部
$sqlstr1 = "insert into wiki.wiki_doc (authorid) values('".$creatorid."') where title='".$newtitle."' and content = '". $newcontent."'" ;
php 字符串与变量连接要用 .号
如果是写sql语句的话,
如果变量为字符串,则需要用单引号引住 即: $sql = "select * from aa where id='".$id."'";
数字则不需要 。即: $sql = "select * from aa where id=".$id;
php 字符串与变量连接要用 .号
如果是写sql语句的话,
如果变量为字符串,则需要用单引号引住 即: $sql = "select * from aa where id='".$id."'";
数字则不需要 。即: $sql = "select * from aa where id=".$id;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
楼上都是错的
正确的:$sqlstr1="insert into wiki.wiki_doc (authorid) values($creatorid) where title=$newtitle and content=$newcontent";
正确的:$sqlstr1="insert into wiki.wiki_doc (authorid) values($creatorid) where title=$newtitle and content=$newcontent";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$sqlstr1="insert into wiki.wiki_doc (authorid) values ('$creatorid') where title=“."'$newtitle '"."'and content='"."'$newcontent'";
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$sqlstr1="insert into wiki.wiki_doc (authorid) values('$creatorid')where title='.$newtitle' and content='.$newcontent'";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询