可以通過(guò)客戶端js腳本實(shí)現(xiàn)。在表單中設(shè)置一個(gè)隱藏域,然后再提交的時(shí)候,用js獲取文本框內(nèi)容并將內(nèi)容設(shè)置為隱藏域值。就可以實(shí)現(xiàn)了
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比豐鎮(zhèn)網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式豐鎮(zhèn)網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋豐鎮(zhèn)地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴。
把文本框放在表單form里面提交就可以了。直接獲得文本框的值,要插入多條記錄,就用循環(huán)執(zhí)行你的那條數(shù)據(jù)sql語(yǔ)句咯
第一種?表單提交
第二種 ajax 要用你input框的id和select框的id
script
//地址添加提交
$(function?()?{
$('#address_submit').click(function?()?{
layer.load(1,{time:1000});
var?select_country=$('#select_country?option:selected').text();//select框
var?select_province=$('#select_province?option:selected').text();
var?select_city=$('#select_city?option:selected').text();
var?consignee=$('#consignee').val();
var?phone=$('#phone').val();
var?address_detail=$('#address_detail').val();
if(!select_country?||?!select_province?||?!consignee?||?!phone?||?!address_detail){
layer.msg('Please?complete?the?receipt?information',?{icon:?2,offset:?'100px',time:'1200'});
}
$.post("{:U('User/addAddress')}",{
'select_country':select_country,
'select_province':select_province,
'select_city':select_city,
'consignee':consignee,
'phone':phone,
'address_detail':address_detail,
},function?(data)?{
if(data=='success'){
layer.msg('operation?success',?{icon:?1,offset:?'100px',time:'1000'});
setTimeout("window.location.reload()",1000);
}
else{
if?(data?==?'no_session')?{
layer.msg('Login?information?has?failed?please?log?in?again?',?{icon:?2,?offset:?'100px',?time:?'1000'});
setTimeout("location.href?=?'{:U("index/Login/login")}'",?1000);
return?false;
}
layer.msg(JSON.stringify(data),?{icon:?2,offset:?'100px',time:'1500'});
return?false;
}
},'json');
});
})
/script
jquery:點(diǎn)擊update觸發(fā)$(this).parents("tr").find("td input").attr("readOnly","false");
有$_GET 或者 $_POST
代碼如下 :
form action='' method='post'
文本框:input type='text' name='text'
input type='submit' value='提交',name='sub'
/form
?php
if(!empty($_POST['sub'])){
echo $_POST['text'];
}
?
如果是GET 就換成GET
進(jìn)入php源程序目錄中的ext目錄中,這里存放著各個(gè)擴(kuò)展模塊的源代碼,選擇你需要的模塊,比如curl模塊:cd curl執(zhí)行phpize生成編譯文件!
phpize在PHP安裝目錄的bin目錄/usr/local/php5/bin/phpize運(yùn)行時(shí),
可能會(huì)報(bào)錯(cuò):Cannot find autoconf. Please check your autoconf installation andthe $PHP_AUTOCONFenvironment variable is set correctly and then rerun thisscript.,需要安裝autoconf:yum install autoconf(RedHat或者CentOS)、apt-get installautoconf(Ubuntu Linux)!
執(zhí)行/usr/local/php5/bin/php -v這個(gè)命令時(shí),php會(huì)去檢查配置文件是否正確,
如果有配置錯(cuò)誤,這里會(huì)報(bào)錯(cuò),可以根據(jù)錯(cuò)誤信息去排查!
文章題目:php獲取文本框數(shù)據(jù),php獲取表單內(nèi)容
轉(zhuǎn)載來(lái)源:http://jinyejixie.com/article4/dssicoe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、App開(kāi)發(fā)、云服務(wù)器、網(wǎng)站改版、網(wǎng)站制作、品牌網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)