我有一個有點問題的,從未使用過香港專業教育學院在加入之前,這是第一次,我得到了一些問題:加入問題MYSQL/PHP
<?php
//$count to keep the counter go from 0 to new value
$count=0;
//I need to select the level for the users building first, meanwhile i also
//need to get the money_gain from the table buildings, which is a table that
//is common for each member, which means it doesnt have a userid as the other table!
//And then for each of the buildings there will be a $counting
$qu1 = mysql_query("SELECT building_user.level,buildings.money_gain FROM building_user,buildings WHERE building_user.userid=$user");
while($row = mysql_fetch_assoc($qu1))
{
$count=$count+$row['level'];
echo $row['level'];
}
?>
所以基本上香港專業教育學院聽說ü應該把他們和一個共同的專欄綁在一起,但在這種情況下,他們不是任何..我現在只是失去了?
編輯哦,對,我需要用正確的money_gain取出正確的等級,在building_user的'buildingid'和建築物中,它的'id'!不知道如何做出一個共同的聲明!
然後創建一個通信列像id? – bwoebi
您的buildings_user表有一個與建築物表上的id綁定的building_id嗎?如果您無法添加用戶列來將它們綁定在一起,您可能能夠從中獲取一些有效的信息,因爲您的目標是該用戶的記錄。 – A23
在編輯中,我確實有一個buildingid,它與建築物表上的id綁定在一起,但我在使用它們作爲條件時遇到了問題! – user2866639