用PHP向資料庫中實現簡單的增刪改查(純程式碼,待完善)

來源:互聯網
上載者:User

標籤:

 

<?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);?>
從伺服器中擷取使用者所有資訊(SQL SELECT語句)並以表格形式出現

 

<?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);?>
刪除該使用者所有資訊delete.php

 

<?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);?>
註冊一個新使用者insert.php

 

<?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);?>
修改一個使用者密碼update.php

 

<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>
以上三個功能的提交源Operate.html

 

用PHP向資料庫中實現簡單的增刪改查(純程式碼,待完善)

相關文章

聯繫我們

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