php中mysql實現的增刪改查功能

來源:互聯網
上載者:User
本篇文章主要介紹php中mysql實現的增刪改查功能,感興趣的朋友參考下,希望對大家有所協助。

列表代碼

<?php  $con = mysql_connect("localhost:3306","root","");  if (!$con) {    die('Could not connect: ' . mysql_error());  }  mysql_select_db("test", $con);  $result = mysql_query("SELECT * FROM user");  echo "<table border='1'>  <tr>  <th>Username</th>  <th>Password</th>  </tr>";  while($row = mysql_fetch_array($result)) {    echo "<tr>";    echo "<td>" . $row['username'] . "</td>";    echo "<td>" . $row['password'] . "</td>";    echo "</tr>";  }  echo "</table>";  mysql_close($con);?>

刪除

<?php  $con = mysql_connect("localhost","root","");  if (!$con) {    die('Could not connect: ' . mysql_error());  }  mysql_select_db("test", $con);  mysql_query("DELETE FROM user WHERE username = '$_POST[username]'");  mysql_close($con);?>

添加

<?php  $con = mysql_connect("localhost:3306","root","");  if (!$con) {    die('Could not connect: ' . mysql_error());  }  mysql_select_db("test", $con);  $sql = "INSERT INTO user (username,password)  VALUES  ('$_POST[username]','$_POST[password]')";  if (!mysql_query($sql,$con)) {    die('Error: ' . mysql_error());  }  echo "1 record added";  mysql_close($con);?>

修改

<?php  $con = mysql_connect("localhost","root","");  if (!$con) {    die('Could not connect: ' . mysql_error());  }  mysql_select_db("test", $con);  mysql_query("UPDATE user SET password = '$_POST[password]' WHERE username = '$_POST[username]'");  mysql_close($con);?>
<html>  <head>    <title>用PHP向資料庫中實現簡單的增刪改查</title>  </head>  <body>    <br />    <h1>Insert:</h1>    <form action="insert.php" method="post">      username:<input type="name" name="username"/>      <br />      password:<input type="password" name="password"/>      <input type="submit" value="submit"/>    </form>    <br /><hr /><br />    <h1>Delete</h1>    <form action="delete.php" method="post">      username:<input type="name" name="username" />      <br />      Are you sure?<input type="submit" value="sure" />    </form>    <br /><hr /><br />    <h1>Update</h1>    <form action="update.php" method="post">      username:<input type="name" name="username"/>      <br />      You want to change your password into:<input type="password" name="password"/>      <input type="submit" value="submit"/>    </form>    <br /><hr /><br />  </body></html>

總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。

相關推薦:

PHP Closure類的使用方法及介紹

PHP+Mysql+jQuery統計當前線上使用者數

PHP中的switch語句的用法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.