Simple learning PHP code for inserting data into MYSQL _ PHP Tutorial

Source: Internet
Author: User
PHP inserts data into MYSQL. How does PHP insert data into MYSQL? Php $ dbhostlocalhost; $ dbuserwebjxcom; your mysql username $ dbpass123456; your mysql password $ dbnamedatabase; your

Simple learning PHP code for inserting data into MYSQL

$ Dbhost = localhost;
$ Dbuser = webjxcom; // your mysql User name
$ Dbpass = 123456; // your mysql password
$ Dbname = database; // your mysql database name

// Connect to the local database
$ Conn = mysql_connect ($ dbhost, $ dbuser, $ dbpass );
If ($ conn ){
Echo "database connected ";
} Else {
Echo "failed to connect to database ";
}
// Open the database
Mysql_select_db ($ dbname, $ conn );
// Insert data
$ SQL = "insert into test (test) values (ddddddd )";
$ Result = mysql_query ($ SQL, $ conn) or die (mysql_error ());

Echo "open database ";
// Close the database
Mysql_close ($ conn );
?>


Why? Php $ dbhost = localhost; $ dbuser = webjxcom; // your mysql username $ dbpass = 123456; // your mysql password $ dbname = database; // your...

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.