php数据插入问题带变量
functionfn_insert($table,$name,$value){return$this->query("insertinto$table($name)val...
function fn_insert($table,$name,$value){
return $this->query("insert into $table($name)value($value)");
}
$use=$_SESSION['shili'];
$db->fn_insert("feedback","id,feedback,use,time","'{$_POST['id']}','{$_POST['mytext']}',$use,$time");
为什么不行的,
$db->fn_insert("feedback","id,feedback,time","'{$_POST['id']}','{$_POST['mytext']}',$time");这段语句却可以插进数据
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'use,time)value('4','请友好发言',1305432474,xiaofeng)'
这是错误提示 展开
return $this->query("insert into $table($name)value($value)");
}
$use=$_SESSION['shili'];
$db->fn_insert("feedback","id,feedback,use,time","'{$_POST['id']}','{$_POST['mytext']}',$use,$time");
为什么不行的,
$db->fn_insert("feedback","id,feedback,time","'{$_POST['id']}','{$_POST['mytext']}',$time");这段语句却可以插进数据
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'use,time)value('4','请友好发言',1305432474,xiaofeng)'
这是错误提示 展开
5个回答
展开全部
1、数据库用的是否是Mysql 5.2.X?
2、如果是,检查你的变量是否有空值?
3、如果变量有空值,给变量赋值,或者把在数据库里给个默认值,或者直接把字段的NULL设置为“是”
2、如果是,检查你的变量是否有空值?
3、如果变量有空值,给变量赋值,或者把在数据库里给个默认值,或者直接把字段的NULL设置为“是”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
注意, 是values 不是 value
给你一个mysql insert 封装函数:
function php_mysql_insert($table, $params){
if(!is_array($params)||isnull($table)) return;
$strA="";
$strB="";
foreach($params as $col=>$value){
if(isnull($col)) continue;
if(isnull($strA)) $strA=$col;
else $strA.=",".$col;
if(isnull($strB)) $strB=" '$value'";
else $strB.=", '$value'";
}
return "insert into {$table} ({$strA}) values ({$strB})";
}
具体用法和isnull函数看我百度的空间,里面还有个多插入行的封装函数
给你一个mysql insert 封装函数:
function php_mysql_insert($table, $params){
if(!is_array($params)||isnull($table)) return;
$strA="";
$strB="";
foreach($params as $col=>$value){
if(isnull($col)) continue;
if(isnull($strA)) $strA=$col;
else $strA.=",".$col;
if(isnull($strB)) $strB=" '$value'";
else $strB.=", '$value'";
}
return "insert into {$table} ({$strA}) values ({$strB})";
}
具体用法和isnull函数看我百度的空间,里面还有个多插入行的封装函数
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是不是session的问题,比如说开头没有写session_start();或者$_SESSION['shili']没有定义。
追问
应该不是,echo $_SESSION['shili']可以输出我要的值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
试试
$db->fn_insert("`feedback`","`id`,`feedback`,`use`,`time`","'{$_POST['id']}','{$_POST['mytext']}',$use,$time");
$db->fn_insert("`feedback`","`id`,`feedback`,`use`,`time`","'{$_POST['id']}','{$_POST['mytext']}',$use,$time");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$use 加引号'$use'
追问
还是不行
追答
直接用$_SESSION['shili']吧。。。不管怎么试$use都为空。。。好像是不能把SESSION传给变量
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询