PHPでクエリ結果を返す方法

藏色散人
リリース: 2023-03-06 15:04:01
オリジナル
4521 人が閲覧しました

クエリ結果を返す

php メソッド: 1. mysql_result 関数を使用してデータを取得します; 2. mysql_fetch_row 関数を使用してデータを取得し、クエリ結果を配列形式で返します; 3. mysql_fetch_array 関数を使用しますデータの取得など。

PHPでクエリ結果を返す方法

推奨: 「PHP ビデオ チュートリアル

PHP 開発における 4 種類のクエリ結果の分析

1.

コードは次のとおりです:

<?php 
$connection=mysql_connect("localhost","root","password"); //连接并选择数据库服务器 
mysql_select_db("test",$connection); 
$query="insert into users(user_name)"; //在test数据库里插入一条数据 
$query.="values(&#39;tuxiaohui&#39;)"; 
$result=mysql_query($query); 
if(!$query) 
echo "insert data failed!<br>"; 
else{ 
$query="select * from users"; //查询数据 
$result=mysql_query($query,$connection); 
for($rows_count=0;$rows_count<7;$rows_count++) //用mysql_result获得数据并输出,mysql_result() 返回 MySQL 结果集中一个单元的内容。 
{ 
echo "用户ID:".mysql_result($result,$rows_count,"user_id")."<br>"; 
echo "用户名:".mysql_result($result,$rows_count,"user_name")."<br>"; 
} 
} 
?>
ログイン後にコピー

2.

コードは次のとおりです:

<?php 
$connection=mysql_connect("localhost","root","password"); //连接并选择数据库服务器 
mysql_select_db("test",$connection); 
$query="select * from users"; 
$result=mysql_query($query,$connection); 
while($row=mysql_fetch_row($result)) 
{ 
echo "用户ID:".$row[0]."<br>"; 
echo "用户名:".$row[1]."<br>"; 
} 
?>
ログイン後にコピー

3.

コードは次のとおりです:

<?php 
$connection=mysql_connect("localhost","root","password"); //连接并选择数据库服务器 
mysql_select_db("test",$connection); 
$query="select * from users"; 
$result=mysql_query($query,$connection); 
while($row=mysql_fetch_array($result)) 
{ 
echo "用户ID:".$row[0]."<br>"; //也可以写做$row["user_id"] 
echo "用户名:".$row[1]."<br>"; //也可以写做$row["user_name"] 
} 
?>
ログイン後にコピー

4.