Connection between PHP and Mysql

Source: Internet
Author: User
After login, it is like this: first, we create a database for testing. If you are lazy, you can create it directly in phpMyAdmin. I created a books database with an item table in it. Next, I implemented a function: connect to the database and print out the table content. Connect data... "/> <scripttype =" text/javascript "src =" http ://

After login, it is like this:

 
 

 

 

First, create a database for testing.

If you are lazy, you can create it directly in phpMyAdmin.

I created a books database with an item table:

 


Next, we will implement a function: connect to the database and print out the table content.

Connect to database


[Php]
$ Db_host = 'localhost ';
$ Db_user = 'root ';
$ Db_pass = '1 ';
$ Db_name = 'books ';
$ Conn = mysql_connect ($ db_host, $ db_user, $ db_pass)
Mysql_select_db ($ db_name, $ conn );
Mysql_query ("set names 'utf8 '");
 
If (! $ Conn) echo "failed! ";
Else echo "success! ";
?>

$ Db_host = 'localhost ';
$ Db_user = 'root ';
$ Db_pass = '1 ';
$ Db_name = 'books ';
$ Conn = mysql_connect ($ db_host, $ db_user, $ db_pass)
Mysql_select_db ($ db_name, $ conn );
Mysql_query ("set names 'utf8 '");

If (! $ Conn) echo "failed! ";
Else echo "success! ";
?>

If the connection is normal, the browser displays seccess!

 


Create list. php


[Php]
Include ("conn. php ");
$ SQL = "select * from items ";
$ Query = mysql_query ($ SQL );
Echo"








";While ($ row = mysql_fetch_array ($ query )){$ Id = $ row ["id"];$ Name = $ row ["name"];Echo" ";}Echo"
Id Name
". $ Id ." ". $ Name ."
";
Mysql_close ();
?>

Include ("conn. php ");
$ SQL = "select * from items ";
$ Query = mysql_query ($ SQL );
Echo"








";While ($ row = mysql_fetch_array ($ query )){$ Id = $ row ["id"];$ Name = $ row ["name"];Echo" ";}Echo"
Id Name
". $ Id ." ". $ Name ."
";
Mysql_close ();
?>

 
 

 

 

Close the job.

 

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.