PHP Get started learning knowledge points PHP with MySQL connection and query _php tutorial

Source: Internet
Author: User
First, connect the database
1. Mysql_connect: Open MySQL Link

Mysql_connect (' host ', ' username ', ' password ')

2. mysql_select_db: Open a Database
mysql_select_db (' database name ', $ link identifier)//link identifier not filled by default is the last open connection

3, mysql_query ("Set names ' GBK '") to solve the problem of Chinese garbled;

mysql_query ("Set Names ' code (UTF8 or GBK) '")//utf8 cannot have "-"

second, query data

1, mysql_query (SQL statement, connection identifier);

$sql = "SELECT * FROM Test"
$result =mysql_query ($sql)//Connection identification defaults think last opened link

Get error message

$result = @mysql_query ($sql) or Die (Mysql_error ())

2, get the results of the query

A, mysql_fetch_row ($result);

$row =mysql_fetch_row ($result);
echo $row [0];

B, Mysql_fetch_array ($result);

$row =mysql_fetch_array ($result);
echo $row [0];
echo $row [' key '];


Description: The Mysql_fetch_array and mysql_fetch_row functions are basically the same, except that it can be indexed with a domain name in addition to the 0-based offset.
The value returns all the field values for the next row, saves them in an array, and returns False when there are no rows.

http://www.bkjia.com/PHPjc/323835.html www.bkjia.com true http://www.bkjia.com/PHPjc/323835.html techarticle I. Connect database 1, mysql_connect: Open MySQL link mysql_connect (' Host ', ' username ', ' password ') 2, mysql_select_db: Opens a database mysql_select_db (' Database name ...

  • 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.