本文主要和大家分享PHP如何更新資料庫的資料的方法。希望能協助到大家。
第一步建立更新分頁檔Upwork.php
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>刪除</title></head><body><h1 style='font-size:18px;text-align:center;'>修改資料</h1>
<?php $code = $_GET["code"]; $db = new MySQLi("localhost","root","123456","study"); !mysqli_connect_error() or die("串連失敗!"); $sql1 = "select * from `員工資訊` where 工號='{$code}'"; $r1 = $db->query($sql1); $att1 = $r1->fetch_row(); ?> <form action="UpworkChuLi.php" method="post"> <p style='text-align:center;'> <p style='margin:10px;'>員工工號:<input readonly="readonly" name="code" value="<?php echo $att1[0];?>" /></p> <p style='margin:10px;'>員工姓名:<input type="text" name="name" value="<?php echo $att1[1];?>" /></p><p style='margin:10px;'>出生日期:<input type="text" name="date" value="<?php echo $att1[2];?>"></p><p style='margin:10px;'>員工年齡:<input type="text" name="age" value="<?php echo $att1[3];?>" /></p> <p style='margin:10px;'>員工職稱:<input type="text" name="job" value="<?php echo $att1[4];?>" /></p><p style='margin:10px;'>所在部門:<input type="text" name="department" value="<?php echo $att1[5];?>"></p><p style='margin:10px;'>員工月薪:<input type="text" name="month" value="<?php echo $att1[6];?>" /></p> <p style='margin:10px;'>員工年薪:<input type="text" name="year" value="<?php echo $att1[7];?>" /></p><p style='margin:10px;'>政治面貌:<input type="text" name="politics" value="<?php echo $att1[8];?>"></p><p style='margin:10px;'>健康情況:<input type="text" name="health" value="<?php echo $att1[9];?>"></p> <p><input type="submit" value="修改資料" /></p></p> </form></body>
</html>
第二步建立更新資料操作的檔案UpworkChuLi.php,在Upwork.php中通過表單跳轉
<?php$code = $_POST["code"];$name = $_POST["name"];$date = $_POST["date"];$age = $_POST["age"];$job = $_POST["job"];$department = $_POST["department"];$month = $_POST["month"];$year = $_POST["year"];$politics = $_POST["politics"];$health = $_POST["health"]; $db = new MySQLi("localhost","root","123456","study"); !mysqli_connect_error() or die("串連失敗!"); $sql = "update `員工資訊` set 姓名='{$name}',出生日期='{$date}',年齡='{$age}',職稱='{$job}', 所在部門='{$department}',月薪='{$month}',年薪='{$year}',政治面貌='{$politics}',健康情況='{$health}' where 工號='{$code}'"; $r = $db->query($sql); if($r) { header("location:work.php"); } else { echo "修改失敗!"; }?>