gpt4 book ai didi

php - 使用 $query = mysql_query 选择更多表

转载 作者:行者123 更新时间:2023-11-29 12:12:44 26 4
gpt4 key购买 nike

我可以使用它选择更多表格吗?

$table = "users";
$query = mysql_query("SELECT title, smalltitle, FROM $table ORDER BY date DESC");
while($result= mysql_fetch_array($query))
{
echo'<div id="title"> ';
echo'<p>'.$result['title'].'</p>';
echo'</div>';

echo'<div id="name"> ';
echo'<p>'.$result['name'].'</p>';
echo'</div>';
}

我想要表“users”中的标题/小标题和表“gmsg”中的名称/文本

最佳答案

使用此查询 -

"SELECT users.title, users.smalltitle, gmsg.name FROM users, gmsg $where_condition ORDER BY users.date DESC"

$where_condition 将是匹配 usersgmsg 的条件,例如 -

$where_condition = "users.id = gmsg.user_id"; //Or whatever it is

关于php - 使用 $query = mysql_query 选择更多表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30372999/

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