表單應(yīng)該使用名字,例如:
西烏珠穆沁網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),西烏珠穆沁網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為西烏珠穆沁超過(guò)千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的西烏珠穆沁做網(wǎng)站的公司定做!
form action=xxx.php method=post
select name="select1"
option value="1" selected="selected"男/option
option value="0"女/option
/select
/form
這樣,在xxx.php里面使用$_POST['select1']獲取結(jié)果。
先查出A中的一條記錄,將記錄存入一個(gè)數(shù)組
$list = select * from a where id=1;
再將$list里的數(shù)據(jù)插入B中(假設(shè)表中有id、name字段)
$sql = "insert into B values({$list['id']} , {$list['name']})";
exec($sql);
我感覺(jué)思路就是這樣吧,就直接查第一個(gè)表里的數(shù)據(jù)同時(shí)再插入到另外一個(gè)表中。
數(shù)組吧,直接把數(shù)組轉(zhuǎn)字符串啊
implode() 函數(shù)返回由數(shù)組元素組合成的字符串。(適合一維數(shù)組)
$arr = array('Hello', 'World', 'I', 'love', 'Shanghai');
1 echo implode(" ",$arr);//加空格
the result : Hello World I love Shanghai
2 echo implode(",",$arr);//加逗號(hào)
the result : Hello,World,I,love,Shanghai
轉(zhuǎn)換數(shù)組為字符串后插入數(shù)據(jù)庫(kù)就可以了。
if?($strleng100){
//如果大于100條就每次寫(xiě)入100,休息1秒,然后繼續(xù)寫(xiě),直到寫(xiě)完為止
$write_count?=?floor($strleng/100);
while?($write_count??0){
for?($i=0;$i100;$i++){
echo?"INSERT?INTO?tbl_name?(a,b,c)?VALUES(1,2,3)";//寫(xiě)100次就休息
}
//echo?"INSERT?INTO?tbl_name?(a,b,c)?VALUES(1,2,3),(4,5,6),(7,8,9);";這樣可以一次插入多條數(shù)據(jù),效率更高
//參考
$write_count?-=1?;
sleep(1);
echo?'休息1秒';
}
}