mysql_fetch_row
返回单列的各字段。 
语法: array mysql_fetch_row(int result); 
返回值: 数组 
函数种类: 数据库功能 
 本函数用来将查询结果 result 之单列拆到数组变量中。数组的索引是数字索引,第一个的索引值是 0。若 result 没有资料,则返回 false 值。 
 mysql_fetch_array()  mysql_fetch_object()  mysql_data_seek()  mysql_fetch_lengths()  mysql_result()   
 
  |