Connection between PHP and MySQL

Source: Internet
Author: User

First, make sure that the lamp environment is fully configured; otherwise, slam me!

Then, log on to phpMyAdmin using the MySQL password, and enter http: // 127.0.0.1/phpMyAdmin in the browser.

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!";?>

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 "<table border=1><tr><td>Id</td><td>Name</td></tr>";while($row = mysql_fetch_array($query)){        $id=$row["id"];        $name=$row["name"]; echo "<tr><td>".$id."</td><td>".$name."</td></tr>";}echo "</table>";mysql_close();?>

Enter http: // 127.0.0.1/test1/list. php In the browser

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.