Sample Code for saving data from a Mysql database using php

Source: Internet
Author: User
Tags form post

In php, the insert and update methods are the two most commonly used data storage methods for mysql databases. Next I will introduce the mysql Data Storage Methods for beginners.

PHP writes data to the MySQL database in three steps:

1. Establish a connection between PHP and MySQL
2. Open the MySQL database
3. Accept page data. Input PHP Data to the specified table.
Steps 1 and 2 can directly use a database link file: conn. php

The Code is as follows: Copy code

<? Php
Mysql_connect ("localhost", "root", ""); // connect to MySQL
Mysql_select_db ("mythroad"); // select a database
?>

Of course, the premise is that you have installed the WEB server, PHP, and MySQL, and created the MySQL table "mythroad"
The three parameters of mysql_connect () are MySQL address, MySQL user name, and MySQL password.
Then, data is transmitted through the WEB page, so that PHP can write data to a table specified by the MySQL database through SQL statements, such as creating a file.
Post. php

The Code is as follows: Copy code

<? Php
Require_once ("conn. php"); // reference the database link file
$ Uname = $ _ GET ['n']; // The GET method is passed as a URL parameter.
$ Pwd = $ _ GET ['P'];
$ Pwd = md5 ($ pwd); // use MD5 encryption directly
$ SQL = "insert into mythroad (username, password) values ('$ uname',' $ pwd ')";
Mysql_query ($ SQL); // use SQL statements to insert data
Mysql_close (); // close the MySQL connection
Echo "successfully entered data ";
?>

Test page: http: // 127.0.0.1/post. php? N = mythroad & p = mythroad
You can insert the new data "mythroad" to the username field and "mythroad" to the password field into the members table of MySQL database hello.

If form post is used, we can accept it by using post.Update Data

Example:

The Code is as follows: Copy code

<? Php
$ Conn = @ mysql_connect ("localhost", "root", "root123 ");
If (! $ Conn ){
Die ("failed to connect to database:". mysql_error ());
}

Mysql_select_db ("test", $ conn );
Mysql_query ("set names 'gbk '");

$ SQL = "UPDATE user SET email = 'xiaoming @ 163.com 'WHERE username = 'xiaoming '";
If (mysql_query ($ SQL, $ conn )){
Echo "data updated! ";
} Else {
Echo "failed to update data:". mysql_error ();
}
?>

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.