當前位置:首頁 » 編程語言 » php資料庫html

php資料庫html

發布時間: 2025-01-01 06:22:51

Ⅰ 怎麼用php把html表單內容寫入資料庫

1:首先要使用PHP的超全局變數 $_GET 和 $_POST 用於收集表單數據(form-data)

2:然後使用INSERT INTO 語句用於向資料庫表中插入新記錄。

具體示例:

(1)首先創建了一個名為 "Persons" 的表,有三個列:"Firstname", "Lastname" 以及 "Age"。

<?php
$con=mysql_connect("localhost","peter","abc123");
if(!$con)
{
die('Couldnotconnect:'.mysql_error());
}

mysql_select_db("my_db",$con);

mysql_query("INSERTINTOPersons(FirstName,LastName,Age)
VALUES('Peter','Griffin','35')");

mysql_query("INSERTINTOPersons(FirstName,LastName,Age)
VALUES('Glenn','Quagmire','33')");

mysql_close($con);
?>

(2)其次創建一個 HTML 表單,這個表單可把新記錄插入 "Persons" 表。

<html>
<body>

<formaction="insert.php"method="post">
Firstname:<inputtype="text"name="firstname"/>
Lastname:<inputtype="text"name="lastname"/>
Age:<inputtype="text"name="age"/>
<inputtype="submit"/>
</form>

</body>
</html>

(3)接著當用戶點擊上例中 HTML 表單中的提交按鈕時,表單數據被發送到 "insert.php"。"insert.php" 文件連接資料庫,並通過
$_POST 變數從表單取回值。然後,mysql_query() 函數執行 INSERT INTO 語句,一條新的記錄會添加到資料庫表中。

<?php
$con=mysql_connect("localhost","peter","abc123");
if(!$con)
{
die('Couldnotconnect:'.mysql_error());
}

mysql_select_db("my_db",$con);

$sql="INSERTINTOPersons(FirstName,LastName,Age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";

if(!mysql_query($sql,$con))
{
die('Error:'.mysql_error());
}
echo"1recordadded";

mysql_close($con)
?>
熱點內容
stb演算法 發布:2025-01-04 03:51:48 瀏覽:40
android開啟線程 發布:2025-01-04 03:51:46 瀏覽:491
安卓手機網路卡如何解決 發布:2025-01-04 03:22:46 瀏覽:306
安卓如何在手機上安裝多個應用 發布:2025-01-04 03:09:13 瀏覽:213
安卓手機官服怎麼設置 發布:2025-01-04 03:09:11 瀏覽:135
aidlandroid 發布:2025-01-04 02:50:16 瀏覽:836
python的單元測試框架 發布:2025-01-04 02:48:45 瀏覽:256
筆記本電腦配置怎麼看是幾代 發布:2025-01-04 02:35:29 瀏覽:504
安卓如何換皮換賬號第五人格 發布:2025-01-04 02:25:24 瀏覽:864
金蝶資料庫在哪 發布:2025-01-04 02:23:13 瀏覽:993