1樓:匿名使用者
你把form的action地址寫到你處理這些資料的那個php檔案,然後在php檔案裡寫連線mysql的程式,對資料進行相應的處理就可以了
php 在提交表單時執行插入動作前,出現確認對話方塊
2樓:優秀
你的按鈕是用button做的,還是用submit做的,這個是js的confirm功能
if(confirm("確定插入嗎?")==false)
點選提交按鈕,php怎樣把html表單裡的內容傳送到資料庫?求**,因為是新手,對這個不懂。謝謝 50
3樓:猛擊**
1.建資料庫
2.建表單頁
3.連結資料庫,讀取提交欄位,插入語句插入資料庫
4樓:匿名使用者
表單提交到後臺 或者ajax提交
當點選註冊按鈕時。php怎麼把html裡的form資料新增到mysql資料
5樓:莫路草根
你這**有多處錯誤。
1、註冊按鈕的type選submit;
2、php的接收資料既然你的html form表單選了post,那麼你接收時候也應該用$_post去接收,而不是$_get;
3、資料庫的連結沒有設定傳輸編碼, 這樣很容易造成插入的資料亂碼。
怎麼用php把html表單內容寫入資料庫
6樓:匿名使用者
form通過submit提交之後
在php端根據$_post['name']方式獲取到對應的表單內容,然後在通過insert方式新增到資料庫就可以了啊。。
參考這裡
以下是**:
html:
<?php
$con = mysql_connect("localhost","peter","abc123");//連線資料庫
if (!$con)
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))echo
mysql_close($con);
?>
7樓:騎王子特斯拉
1:首先要使用php的超全域性變數 $_get 和 $_post 用於收集表單資料(form-data)
2:然後使用insert into 語句用於向資料庫表中插入新記錄。
具體示例:
(1)首先建立了一個名為 "persons" 的表,有三個列:"firstname", "lastname" 以及 "age"。
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
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)其次建立一個 html 表單,這個表單可把新記錄插入 "persons" 表。
(3)接著當使用者點選上例中 html 表單中的提交按鈕時,表單資料被髮送到 "insert.php"。"insert.php" 檔案連線資料庫,並通過
$_post 變數從表單取回值。然後,mysql_query() 函式執行 insert into 語句,一條新的記錄會新增到資料庫表中。
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
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))
echo "1 record added";
mysql_close($con)
?>
html提交from表單按鈕 php
8樓:匿名使用者
你的這個是不是需要提交的時候點那個
下邊用jquery提交
$("#1").click(function())
9樓:薔薇夜天涯
用form的get方式提交。不用post 的提交
剛學php html裡面的按鈕怎麼樣點選一下就呼叫php裡面的方法 進行對資料庫的操作?
10樓:不記得你的樣子
<?php
if(isset($_post['update']))//意思是判斷是否點了名字為update的按鈕
?>
求php獲取html表單傳遞的值然後在資料庫中查詢然
首先可以先過濾下post過來的值 如果不用用考慮安全問題就不必過濾了 下面是不考慮過濾的情況 if isset post submit 用 post接收html傳的值,然後去資料庫裡查詢,再返回給html頁面顯示出來。你資料庫建了嗎?建了資料庫還得有資料才能查,否則得先寫插入資料庫的操作頁面。顯示出...
php為什麼在表單中插入資料會失敗
sql insert into t user f username,f password,f name,f email values sql username pwd name email 這一部分錯了吧。應該是這樣 sql insert into t user f username,f passw...
如何將php中表單的文字域資料傳遞到另表單的文字域
本頁面處理 跨頁面處理 a.php b.php 需要傳送到另外一個php程式做處理先。另外一個php程式接收 form1的內容。並在另一個頁面的form2裡,用php再輸出 例 form1 裡有個 php裡可以接受 username erquest username 再輸出 表單提交到另一個php頁...