- PHP 和 MySQL 教程
- PHP 和 MySQL - 主页
- PHP 和 MySQL - 概述
- PHP 和 MySQL - 环境设置
- PHP 和 MySQL 示例
- PHP 和 MySQL - 连接数据库
- PHP 和 MySQL - 创建数据库
- PHP 和 MySQL - 删除数据库
- PHP 和 MySQL - 选择数据库
- PHP 和 MySQL - 创建表
- PHP 和 MySQL - 删除表
- PHP 和 MySQL - 插入记录
- PHP 和 MySQL - 选择记录
- PHP 和 MySQL - 更新记录
- PHP 和 MySQL - 删除记录
- PHP 和 MySQL -Where 子句
- PHP 和 MySQL - Like 子句
- PHP 和 MySQL - 数据排序
- PHP 和 MySQL - 使用联接
- PHP 和 MySQL - 处理 NULL
- PHP 和 MySQL - 数据库信息
- PHP 和 MySQL 有用资源
- PHP 和 MySQL - 快速指南
- PHP 和 MySQL - 有用的资源
- PHP 和 MySQL - 讨论
PHP 和 MySQL - 选择记录示例
您可以在 PHP 函数mysql_query()中使用相同的 SQL SELECT 命令。该函数用于执行SQL命令,然后可以使用另一个PHP函数mysql_fetch_array()来获取所有选定的数据。此函数以关联数组、数值数组或两者的形式返回行。如果没有更多行,则此函数返回 FALSE。
以下程序是一个简单的示例,它将展示如何从tutorials_tbl表中获取/显示记录。
例子
以下代码块将显示tutorials_tbl表中的所有记录。
将以下示例复制并粘贴为 mysql_example.php -
<html> <head> <title>Selecting Records</title> </head> <body> <?php $dbhost = 'localhost'; $dbuser = 'root'; $dbpass = 'root@123'; $conn = mysqli_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysqli_error($conn)); } echo 'Connected successfully<br />'; mysqli_select_db( $conn, 'TUTORIALS' ); $sql = "SELECT tutorial_id, tutorial_title, tutorial_author, submission_date FROM tutorials_tbl"; $retval = mysqli_query( $conn, $sql ); if(! $retval ) { die('Could not get data: ' . mysqli_error($conn)); } while($row = mysqli_fetch_array($retval, MYSQL_ASSOC)) { echo "Tutorial ID :{$row['tutorial_id']} ". "Title: {$row['tutorial_title']} ". "Author: {$row['tutorial_author']} ". "Submission Date : {$row['submission_date']} ". "--------------------------------"; } echo "Fetched data successfully\n"; mysqli_close($conn); ?> </body> </html>
输出
访问部署在 apache Web 服务器上的 mysql_example.php,输入详细信息并验证提交表单时的输出。
Entered data successfully
在进行数据插入时,最好使用函数get_magic_quotes_gpc()来检查当前的 magic quote 配置是否已设置。如果此函数返回 false,则使用函数addslashes()在引号前添加斜杠。
您可以进行许多验证来检查输入的数据是否正确,并可以采取适当的操作。