gpt4 book ai didi

php - 你好,我如何向我的页面显示来自 2 个不同表的数据

转载 作者:行者123 更新时间:2023-11-29 21:00:49 27 4
gpt4 key购买 nike

你好,我如何向我的页面显示来自 2 个不同表的数据。请帮助我

<?php
session_start();
include_once '../db_connect/db.php';
if(!isset($_SESSION['user']))
{
header("Location: ./login");
}
$res=mysql_query("SELECT * FROM escrow_users WHERE user_id=".$_SESSION['user']);
$userRow=mysql_fetch_array($res);

$res2=mysql_query("SELECT * FROM escrow_orders WHERE user_id=".$_SESSION['user']);
$userRow2=mysql_fetch_array($res2);


//die(mysql_error());

?>

最佳答案

是的。通过while语句进行查询。

$query = mysql_query('query_statement');

while($row = mysql_fetch_assoc($query)){
echo '<div>' . $row['field'] . '</div>';
}

关于php - 你好,我如何向我的页面显示来自 2 个不同表的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37249166/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com