|
sqlsrv_fetchMakes the next row in a result set available for reading Description
mixed sqlsrv_fetch
( resource
$stmt
[, int $row
[, int $offset
]] )Makes the next row in a result set available for reading. Use sqlsrv_get_field to read the fields of the row. Parameters
Return Values
Returns Examples
Example #1 sqlsrv_fetch example The following example demonstrates how to retrieve a row with sqlsrv_fetch and get the row fields with sqlsrv_get_field.
<?php See Also
|