MySQL 建立新資料到資料庫

新增資料

簡述

要看前端是用 POST 還是 GET 來帶資料的:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
// 把前端帶過來的資料存起來
$username = $_POST['username'];
// 字串拼接寫法
$sql = 'INSERT INTO users(username) VALUES("' . $username . '")';
// sprintf 寫法
$sql2 = sprintf('INSERT INTO users (username) VALUES ("%s")', $username);

// 下 query 指令
$result = $conn->query($sql2);

// 檢查回傳值
if (!$result) {
die($conn->error);
}

// 在 response header 加上這段 = 重新導向
header('Location: index.php');
?>
MySQL 從資料庫中刪除資料 MySQL 讀取資料庫中的資料
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×