1. 程式人生 > 其它 >php向mysql插入資料

php向mysql插入資料

<?php
//設定編碼格式
header("Content-type:text/html;charset=utf-8");
//裝置變數
$servername = "localhost";  
$username = "root";  
$password = "root";  
$dbname = "test";  
//獲取傳遞值:$_GET['name'] 或$_POST['name'] 
$id = $_GET['id'];
$name = $_GET['name'];
$age = $_GET['age'];
$sex = $_GET['sex'];
// 建立連線  
$con =mysqli_connect
($servername, $username, $password, $dbname); $sql="INSERT INTO `表名稱`(`欄位1`, `欄位2`, `欄位3`, `欄位4`) VALUES ("$id","$name","$age","$sex")"; $result = mysqli_query($con,$sql); if($result) echo "新增成功!"; else echo "新增失敗!"; mysqli_close($con); ?>

把來自表單的資料插入資料庫

現在,我們建立一個 HTML 表單,這個表單可把新記錄插入 "Persons" 表。

這是這個 HTML 表單:

<html>
<body>

<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>

當用戶點選上例中 HTML 表單中的提交按鈕時,表單資料被髮送到 "insert.php"。"insert.php" 檔案連線資料庫,並通過 $_POST 變數從表單取回值。然後,mysql_query() 函式執行 INSERT INTO 語句,一條新的記錄會新增到資料庫表中。

下面是 "insert.php" 頁面的程式碼:

<?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)
?>