php插入数据库问题。主要是把多个信息(数组)插入一行。
<?phpinclude_once("include/include.all.php");$sql=newmysqlclass();if(isset($_POST['su...
<?php
include_once("include/include.all.php");
$sql=new mysqlclass();
if(isset($_POST['submit'])){
if(empty($_POST['process']) and empty($_POST['type']) and empty($_POST['part'])){
new jump("请填写必填项","repair_tj.php?number=$_POST[number]");
}else{
$typ=implode("",$_POST['type']);
$par=implode("",$_POST['part']);
$insert="insert into repair (id,number,type,part,process,time,aid) value('','$_POST[number]','$typ','$par','$_POST[process]',now(),''";
$sql->query($insert);
}
}else{
$smarty->assign("number",$_GET['number']);
$smarty->display("tanchu_b.html");
}
?> 展开
include_once("include/include.all.php");
$sql=new mysqlclass();
if(isset($_POST['submit'])){
if(empty($_POST['process']) and empty($_POST['type']) and empty($_POST['part'])){
new jump("请填写必填项","repair_tj.php?number=$_POST[number]");
}else{
$typ=implode("",$_POST['type']);
$par=implode("",$_POST['part']);
$insert="insert into repair (id,number,type,part,process,time,aid) value('','$_POST[number]','$typ','$par','$_POST[process]',now(),''";
$sql->query($insert);
}
}else{
$smarty->assign("number",$_GET['number']);
$smarty->display("tanchu_b.html");
}
?> 展开
2个回答
展开全部
你好,你这里的sql语句:$insert="insert into repair (id,number,type,part,process,time,aid) value('','$_POST[number]','$typ','$par','$_POST[process]',now(),''";应该说是有几个问题的:
1 value应该改为values
2 values后面的)没有顺利结束。
针对这两个问题,我帮你改完的sql语句如下:
$insert="insert into repair (id,number,type,part,process,time,aid) values('','$_POST[number]','$typ','$par','$_POST[process]',now(),'')";
如果这个改动后还有问题,请在该回答后追问,或者添加我的百度hi为好友,我见到后都会问你解答。
1 value应该改为values
2 values后面的)没有顺利结束。
针对这两个问题,我帮你改完的sql语句如下:
$insert="insert into repair (id,number,type,part,process,time,aid) values('','$_POST[number]','$typ','$par','$_POST[process]',now(),'')";
如果这个改动后还有问题,请在该回答后追问,或者添加我的百度hi为好友,我见到后都会问你解答。
追问
already done!3ku.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询