PHP MySQL operations and methods for reading data

jacklove
Release: 2023-03-25 13:54:01
Original
2298 people have browsed it

PHP MySQL Reading data plays an important role in database operations. This article will explain the operation of reading data in detail.

Read data from MySQL database

The SELECT statement is used to read data from the data table:

SELECT column_name(s) FROM table_name

We can use the * sign to read fields in all data tables:

SELECT * FROM table_name

To learn more about SQL, please visit our SQL Tutorial.

Using MySQLi

In the following example, we read the data of the id, firstname and lastname columns from the MyGuests table of the myDB database and display it on the page:

Example (MySQLi -Object-oriented)

connect_error) { die("连接失败: " . $conn->connect_error);} $sql = "SELECT id, firstname, lastname FROM MyGuests";$result = $conn->query($sql); if ($result->num_rows > 0) { // 输出数据 while($row = $result->fetch_assoc()) { echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " . $row["lastname"]. "
"; }} else { echo "0 结果";}$conn->close();?>
Copy after login


The above code is analyzed as follows:

First, we set up the SQL statement to read from the MyGuests data table Take three fields: id, firstname and lastname. We then use the modified SQL statement to retrieve the result set from the database and assign it to the copied variable $result.

Function num_rows() determines the returned data.

If multiple pieces of data are returned, the function fetch_assoc() will put the combined set into an associative array and output it in a loop. while() loops out the result set and outputs the three field values id, firstname and lastname.

The following example uses MySQLi's process-oriented approach, and the effect is similar to the above code:

Example (MySQLi - process-oriented)

 0) { // 输出数据 while($row = mysqli_fetch_assoc($result)) { echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " . $row["lastname"]. "
"; }} else { echo "0 结果";} mysqli_close($conn);?>
Copy after login

Use PDO (preprocessing)

The following examples use prepared statements.

Selected the id, firstname and lastname fields in the MyGuests table and placed them in the HTML table:

Example (PDO)

";echo "IdFirstnameLastname"; class TableRows extends RecursiveIteratorIterator { function construct($it) { parent::construct($it, self::LEAVES_ONLY); } function current() { return "" . parent::current(). ""; } function beginChildren() { echo ""; } function endChildren() { echo "" . "\n"; } } $servername = "localhost";$username = "username";$password = "password";$dbname = "myDBPDO"; try { $conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $stmt = $conn->prepare("SELECT id, firstname, lastname FROM MyGuests"); $stmt->execute(); // 设置结果集为关联数组 $result = $stmt->setFetchMode(PDO::FETCH_ASSOC); foreach(new TableRows(new RecursiveArrayIterator($stmt->fetchAll())) as $k=>$v) { echo $v; }}catch(PDOException $e) { echo "Error: " . $e->getMessage();}$conn = null;echo "";?>
Copy after login

This article explains how to read the database Get the operation and related knowledge. For more learning materials, please pay attention to the php Chinese website to view.

Related recommendations:

How to use PHP to send emails

Understanding and use of PHP Cookie related knowledge

PHP Session understanding and application of cache-related knowledge


The above is the detailed content of PHP MySQL operations and methods for reading data. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!