在php表單中
馬村網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,馬村網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為馬村上1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的馬村做網(wǎng)站的公司定做!
單選按鈕
如果選中了提交后,就是這個(gè)單選按鈕的值,如果沒有選中,提交是空值。
比如
在提交后
如果是選中打鉤的,在php
獲取到的值就是
echo
$_post['a']
//輸出
1
如果沒有選中,在php
獲取到的值就是
echo
$_post['a']
//輸出
if
(empty($_post['a']))
{
$a=0;
}else{
$a=$_post['a'];
}
用PHP向服務(wù)器發(fā)送HTTP的POST請(qǐng)求,代碼如下:
?php
/**????
*?發(fā)送post請(qǐng)求????
*?@param?string?$url?請(qǐng)求地址????
*?@param?array?$post_data?post鍵值對(duì)數(shù)據(jù)????
*?@return?string????
*/????
function?send_post($url,?$post_data)?{????
$postdata?=?http_build_query($post_data);????
$options?=?array(????
'http'?=?array(????
'method'?=?'POST',????
'header'?=?'Content-type:application/x-www-form-urlencoded',????
'content'?=?$postdata,????
'timeout'?=?15?*?60?//?超時(shí)時(shí)間(單位:s)????
)????
);????
$context?=?stream_context_create($options);????
$result?=?file_get_contents($url,?false,?$context);?????????????
return?$result;????
}
使用的時(shí)候直接調(diào)用上面定義的send_post方法:
$post_data?=?array(
'username'?=?'username',
'password'?=?'password'
);
send_post('網(wǎng)址',?$post_data);
寫個(gè)簡(jiǎn)單的吧
a.php
form method="post" action="b.php"
input type="text" name="test" value=""這是你要提交的數(shù)據(jù)
input type="submit" value="提交"
/form
點(diǎn)擊提交按鈕就跳到b頁面了
b.php
echo $_POST['test'];
打印a提交過來的數(shù)據(jù),如果有數(shù)據(jù)你就自己寫sql語句存入數(shù)據(jù)庫就好了