看这个页面
http://php.net/manual/en/function.mysql-result.php
mysql_result ( resource $result , int $row [, mixed $field = 0 ] )
从 MySQL 结果集中检索一个单元格的内容。
在处理大型结果集时,您应该考虑使用获取整行的函数之一(在下面指定)。由于这些函数在一个函数调用中返回多个单元格的内容,因此它们比 mysql_result() 快得多。另外,请注意,为 field 参数指定数字偏移量比指定 fieldname 或 tablename.fieldname 参数要快得多。
结果
The result resource that is being evaluated. This result comes from a call to `mysql_query().`
排
The row number from the result that's being retrieved. Row numbers start at 0.
场地
The name or offset of the field being retrieved.
It can be the field's offset, the field's name, or the field's table dot field name (tablename.fieldname). If the column name has been aliased ('select foo as bar from...'), use the alias instead of the column name. If undefined, the first field is retrieved.