符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
a.php页面提交的表单到b.php页面;b.php页面先将得到的post数据写入数据库,然后直接输出post的数据。
创新互联主要从事网站制作、成都网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务庆阳,十载网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18980820575
Button onclick="submit(this.getAttribute('id'))" id="1"提交/Button
table
tr
tdButton class="btn" id="1"提交/Button/td
/tr
tr
tdButton class="btn" id="2"提交/Button/td
/tr
tr
tdButton class="btn" id="3"提交/Button/td
/tr
tr
tdButton class="btn" id="4"提交/Button/td
/tr
/table
script
$(function(){
$(".btn").click(function(){
var id = $(this).attr("id");
var self = this;
$.ajax({
type:'post',
dataType:'json'
url:'submit.php',
data:{id:id},
success:function(){
$(self).parent().parent().remove();//删除该按钮
}
})
})
})
/script
利用表单提交,范例代码如下:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /
title无标题文档/title
/head
body
table
form name="" action="ip地址" method="post" (这里是新增的)
tr
td valign="top" height="110"兴趣特长:/td
tdtextarea name="content" rows="6" class="textarea0" style="width:630px" /textarea/td
/tr
tr
td valign="top"自我评价:/td
tdtextarea name="content" rows="6" class="textarea0" style="width:630px" /textarea/td
/tr
tr
td colspan="2" align="center"input type="submit" value="提交" //td
/tr
/form (这里是新增的)
/table
/body
/html
if (isset($_POST[tj])){
$sql=mysql_query("update gg set bt='$bt' nr='$nr' where id='$_GET[update]'");
}
发现了一个错误,其他地方不知道还有没有,sql语句有问题
"update gg set bt='$bt',nr='$nr' where id='$_GET[update]'"
bt='$bt',nr='$nr' 字段赋值,中间用“,”连接
你可以输出sql语句看语句是否有问题,也可以复制输出语句去数据库直接执行下看是不是有逻辑错误,确定没问题了再去看其他地方是否有问题