Php+mysql to realize simple adding, deleting and checking function _php skill

Source: Internet
Author: User

List code

<?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);

? >

Delete

<?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);
? >

Add to

<?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);

? >

Modify

 <?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);?> 
 

The above is the entire contents of this article, I hope you can enjoy.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.