如何让这段代码显示指定的字段呢?$connect=mysql_connect("localhost","root","netxfly") or die("Could not connect:".mysql_error());
mysql_select_db("radius") or die("Could not select database");
$result=mysql_query("select radcheck.username,groupname from radcheck,usergroup where radcheck.username=usergroup.username order by radcheck.id");
while($row=mysql_fetch_array($result,MYSQL_ASSOC)){
//(列表内容略)
 print "\t<tr>\n";
 
       // foreach ($row as $col_value) {
       //     print "\t\t<td align='center'>$col_value</td>\n";
       // }
          print "\t\t<td align='center'>$row[字段名]</td>\n";
t "\t</tr>\n";
    }
    print "</table>\n"