gpt4 book ai didi

PHP 搜索 SQL 数据库

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

我的域上有一个 MySQL 数据库,我创建了一个名为 AccountInformation 的表。该表中包含诸如 AccountIDAccountNameFirstNameSecondName 等内容。

我制作了一个 PHP 程序,它连接到该数据库并能够获取所有行并显示它们,但这不是我想要的。我想根据特定行的 ID 获取信息。

伪示例:

 $UserName String

$SearchID = 1

$UserName = fetchrow where 'AccountID' = $SearchID and get 'AccountName' of that row

这样我现在就在 $UserName 中获得了 ID 1 帐户的 UserName

最佳答案

好的,这应该就是您要找的...

/* put the value of $number to the id number you want to get other info from*/
$number = "1";
$sql = mysql_query("select * from `AccountInformation` where `id`='$number';");

$result = mysql_fetch_assoc($sql);

echo $result["AccountName"];

关于PHP 搜索 SQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32100743/

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