php man page for mssql_fetch_row

Query: mssql_fetch_row

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

MSSQL_FETCH_ROW(3)														MSSQL_FETCH_ROW(3)

mssql_fetch_row - Get row as enumerated array

SYNOPSIS
array mssql_fetch_row (resource $result)
DESCRIPTION
mssql_fetch_row(3) fetches one row of data from the result associated with the specified result identifier. The row is returned as an array. Each result column is stored in an array offset, starting at offset 0. Subsequent call to mssql_fetch_row(3) would return the next row in the result set, or FALSE if there are no more rows.
PARAMETERS
o $result - The result resource that is being evaluated. This result comes from a call to mssql_query(3).
RETURN VALUES
Returns an array that corresponds to the fetched row, or FALSE if there are no more rows.
EXAMPLES
Example #1 mssql_fetch_row(3) example <?php // Connect to MSSQL and select the database $link = mssql_connect('MANGOSQLEXPRESS', 'sa', 'phpfi'); mssql_select_db('php', $link); // Query to execute $query = mssql_query('SELECT [id], [quote] FROM [quotes] WHERE [id] = '42'', $link); // Did the query fail? if (!$query) { die('MSSQL error: ' . mssql_get_last_message()); } // Fetch the row $row = mssql_fetch_row($query); // Print the 'quote' echo 'Quote #' . $row[0] . ': "' . $row[1] . '"'; ?> The above example will output something similar to: Quote #42: "The answer to everything..."
NOTES
Note This function sets NULL fields to the PHP NULL value.
SEE ALSO
mssql_fetch_array(3), mssql_fetch_object(3), mssql_data_seek(3), mssql_result(3). PHP Documentation Group MSSQL_FETCH_ROW(3)
Related Man Pages
mysqli_fetch_row(3) - php
pdostatement.fetchcolumn(3) - php
fbsql_fetch_array(3) - php
maxdb_data_seek(3) - php
mssql_fetch_field(3) - php
Similar Topics in the Unix Linux Community
File splitter by nth row
Bash script
Extract specific text from variable and put it into array
awk find the first matching row
Egrep find word that occurs twice in a row