我的域上有一个MySQL数据库,而不是我创建了一个名为AccountInformation的表。在该表格中有AccountID
,AccountName
,FirstName
,SecondName
等内容。
我制作了一个连接到该数据库的PHP程序,能够获取所有行并显示它们,但这不是我想要它做的。我想根据其ID从某一行获取信息。
伪示例:
$UserName String
$SearchID = 1
$UserName = fetchrow where 'AccountID' = $SearchID and get 'AccountName' of that row
因此我现在拥有UserName
ID 1
帐户的$UserName
。
答案 0 :(得分:1)
好的,这应该是你要找的......
/* 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"];