a.php頁面提交的表單到b.php頁面;b.php頁面先將得到的post數(shù)據(jù)寫入數(shù)據(jù)庫,然后直接輸出post的數(shù)據(jù)。
創(chuàng)新互聯(lián)主要從事網(wǎng)站制作、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)慶陽,十載網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):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]'");
}
發(fā)現(xiàn)了一個錯誤,其他地方不知道還有沒有,sql語句有問題
"update gg set bt='$bt',nr='$nr' where id='$_GET[update]'"
bt='$bt',nr='$nr' 字段賦值,中間用“,”連接
你可以輸出sql語句看語句是否有問題,也可以復(fù)制輸出語句去數(shù)據(jù)庫直接執(zhí)行下看是不是有邏輯錯誤,確定沒問題了再去看其他地方是否有問題