Home > PHP > Function > FrontBase > fbsql_result()

fbsql_result()

fbsql_result - Get result data

Syntax

mixed fbsql_result (resource $result, int $row, mixed $field)

Arguments

  • result - A result identifier returned by fbsql_query() or fbsql_db_query().
  • row
  • field - Can be the field\'s offset, or the field\'s name, or the field\'s table dot field\'s name (tablename.fieldname). If the column name has been aliased (\'select foo as bar from...\'), use the alias instead of the column name. Note: Specifying a numeric offset for the field argument is much quicker than specifying a fieldname or tablename.fieldname argument.

Description

Returns the contents of one cell from a FrontBase result set.

Version

PHP 4.0.6, 5

Return value