我有这个代码:
function get_team_a($id_team){
$result = mysql_query("SELECT * FROM `table1` WHERE `id` = '{$id_team}'");
return mysql_fetch_assoc($result);
}
在表中我有 3 列:
ppl op id
10 23 1006
6 21 1005
11 15 1004
但是当我这样做时:
$team_zgl= get_team_a($team_id);
<br><b>'.$team_zgl['id'].' </b>
除了这个我什么都没有:
<br><b>'.$team_zgl['op'].' </b>
<br><b>'.$team_zgl['ppl'].' </b>
什么?!