PHP如何更新資料庫的資料

來源:互聯網
上載者:User
本文主要和大家分享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 "修改失敗!"; }?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.