直接 $name = $_POST
成都創(chuàng)新互聯(lián)是少有的做網(wǎng)站、成都網(wǎng)站建設(shè)、營(yíng)銷型企業(yè)網(wǎng)站、微信平臺(tái)小程序開(kāi)發(fā)、手機(jī)APP,開(kāi)發(fā)、制作、設(shè)計(jì)、買鏈接、推廣優(yōu)化一站式服務(wù)網(wǎng)絡(luò)公司,自2013年創(chuàng)立以來(lái),堅(jiān)持透明化,價(jià)格低,無(wú)套路經(jīng)營(yíng)理念。讓網(wǎng)頁(yè)驚喜每一位訪客多年來(lái)深受用戶好評(píng)
var_dump($name)
看有沒(méi)有數(shù)據(jù),沒(méi)有的話就是你的提交地址錯(cuò)了
1:首先要使用PHP的超全局變量 $_GET 和 $_POST 用于收集表單數(shù)據(jù)(form-data)
2:然后使用INSERT INTO 語(yǔ)句用于向數(shù)據(jù)庫(kù)表中插入新記錄。
具體示例:
(1)首先創(chuàng)建了一個(gè)名為 "Persons" 的表,有三個(gè)列:"Firstname", "Lastname" 以及 "Age"。
?php$con = mysql_connect("localhost","peter","abc123");if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); mysql_query("INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Peter', 'Griffin', '35')"); mysql_query("INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Glenn', 'Quagmire', '33')"); mysql_close($con);?
(2)其次創(chuàng)建一個(gè) HTML 表單,這個(gè)表單可把新記錄插入 "Persons" 表。
htmlbody form action="insert.php" method="post"Firstname: input type="text" name="firstname" /Lastname: input type="text" name="lastname" /Age: input type="text" name="age" /input type="submit" //form /body/html
(3)接著當(dāng)用戶點(diǎn)擊上例中 HTML 表單中的提交按鈕時(shí),表單數(shù)據(jù)被發(fā)送到 "insert.php"。"insert.php" 文件連接數(shù)據(jù)庫(kù),并通過(guò) $_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語(yǔ)句,一條新的記錄會(huì)添加到數(shù)據(jù)庫(kù)表中。
?php$con = mysql_connect("localhost","peter","abc123");if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $sql="INSERT INTO Persons (FirstName, LastName, Age)VALUES('$_POST[firstname]','$_POST[lastname]','$_POST[age]')"; if (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); }echo "1 record added"; mysql_close($con)?
核心提示:? $stop = $_GET['stop']; $onoff = $_GET['onoff']; $linkid=@mysql_connect(localhost, root , 12345) or die(不能連接到數(shù)據(jù)庫(kù)服務(wù)器!可能是數(shù)據(jù)庫(kù)服務(wù)器沒(méi)有啟動(dòng),或者用戶名密碼有誤!); @mysql_select_db(ok_11,$linkid) or die(選擇數(shù)據(jù)庫(kù)出錯(cuò),可能是您指定的.....
?
$stop = $_GET['stop'];
$onoff = $_GET['onoff'];
$linkid=@mysql_connect("localhost", "root" , "12345") or die("不能連接到數(shù)據(jù)庫(kù)服務(wù)器!可能是數(shù)據(jù)庫(kù)服務(wù)器沒(méi)有啟動(dòng),或者用戶名密碼有誤!");
@mysql_select_db("ok_11",$linkid) or die("選擇數(shù)據(jù)庫(kù)出錯(cuò),可能是您指定的數(shù)據(jù)庫(kù)不存在!");
$stop_query = "update tb_1 set $stop=$onoff";
$stop_result = @mysql_query("$stop_query",$linkid);
echo 'meta http-equiv="Content-Type" conten';
echo 't="text/html; charset=gb2312" /
html
head
title開(kāi)關(guān)面板/title
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
scrip';
echo 't language="JavaScript"
!--
function Stopan(i) {
with(document.getDataForm){
st';
echo 'op.value = stop_1;
onoff.value = i;
submit();
}
}
//--
/scri';
echo 'pt
/head
body
a h';
echo 'ref="JavaScript: Stopan(0)"打開(kāi)/a / a href="JavaScript: Stopan(1)"關(guān)閉/a
/body
/html';
?
總是提示SCRIPT ERROR!不知錯(cuò)在哪里,初學(xué)者,不會(huì)請(qǐng)別見(jiàn)笑!謝謝指導(dǎo)!
--------------------------------------------------------------------------------
頂?。。。。?!
--------------------------------------------------------------------------------
?
if(isset($_GET['stop']) isset($_GET['onoff'])) {
$stop = $_GET['stop'];
$onoff = $_GET['onoff'];
$linkid=@mysql_connect("localhost", "root" , "12345") or die("不能連接到數(shù)據(jù)庫(kù)服務(wù)器!可能是數(shù)據(jù)庫(kù)服務(wù)器沒(méi)有啟動(dòng),或者用戶名密碼有誤!");
@mysql_select_db("ok_11",$linkid) or die("選擇數(shù)據(jù)庫(kù)出錯(cuò),可能是您指定的數(shù)據(jù)庫(kù)不存在!");
$stop_query = "update tb_1 set $stop=$onoff";
$stop_result = @mysql_query("$stop_query",$linkid);
}
echo 'meta http-equiv="Content-Type" conten';
echo 't="text/html; charset=gb2312" /
html
head
title開(kāi)關(guān)面板/title
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
scrip';
echo 't language="JavaScript"
!--
function Stopan(i) {
with(document.test){
st';
echo 'op.value = "stop_1";
onoff.value = i;
submit();
}
}
//--
/scri';
echo 'pt
/head
body
a h';
echo 'ref="JavaScript: Stopan(0)"打開(kāi)/a / a href="JavaScript: Stopan(1)"關(guān)閉/a
form name="test" method="GET" action="test1.php"
input type="hidden" name="stop"
input type="hidden" name="onoff"
/form
/body
/html';
?
我沒(méi)聽(tīng)過(guò)什么php的表單啊……php應(yīng)該是接收表單的值,和處理表單把,表單應(yīng)該是html里面的,要?jiǎng)?chuàng)建表單的話
form action="index.php" method="get/post"
input type="text" name="tx" /
/form
這個(gè)就是form表單,action表示傳值給哪個(gè)文件,method表示傳值的方式,表單是要在html文件里創(chuàng)建的
本文標(biāo)題:php創(chuàng)建數(shù)據(jù)表單 用php創(chuàng)建表單
文章網(wǎng)址:http://www.rwnh.cn/article12/doppidc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開(kāi)發(fā)、網(wǎng)站設(shè)計(jì)公司、定制網(wǎng)站、手機(jī)網(wǎng)站建設(shè)、小程序開(kāi)發(fā)、Google
聲明:本網(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)