Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - mssql_result() - Retrieve Field Values
By: FYIcenter.com
(Continued from previous topic...)
How To Retrieve Field Values using mssql_result()?
Once the result set is captured in an object, you can think of it
as a "table" with rows and columns (fields).
You can use mssql_result() to retrieve
the value of any given row and column (field) with this formats:
$value = mssql_result($res, $row, $column);
#- $row is the row number, starting with 0
#- $column is the column number, starting with 0
The tutorial PHP script below shows you how to list tables in the database
with multiple field values:
<?php
$con = mssql_connect('LOCALHOST','sa','FYIcenter');
mssql_select_db('FyiCenterData', $con);
$sql = "SELECT * FROM sys.objects"
. " WHERE type_desc='USER_TABLE'";
$res = mssql_query($sql, $con);
print("User Tables:\n");
for ($i=0; $i
If you run this script, you will get something like:
User Tables:
fyi_rates, 85575343, USER_TABLE
fyi_team, 165575628, USER_TABLE
fyi_random, 821577965, USER_TABLE
fyi_links_indexed, 1061578820, USER_TABLE
fyi_links, 1093578934, USER_TABLE
fyi_links_copy, 1253579504, USER_TABLE
tipBackup2, 2121058592, USER_TABLE
(Continued on next topic...)
- How To Download and Install PHP on Windows?
- How To Check Your PHP Installation?
- What Do You Need to Connect PHP to SQL Server?
- How to Turn on the MSSQL API Module?
- What Is Wrong with SQL Server Client Libarary DLL, ntwdblib.dll?
- What Happens If ntwdblib.dll Is Missing on Your Machine?
- Where to Find ntwdblib.dll Version 2000.80.194.0?
- How To Connect with Different Port Numbers?
- What Are Commonly Used MSSQL Functions in PHP?
- How To Disconnect from a SQL Server using mssql_close()?
- How To Select an Exiting Database using mssql_select_db()?
- How To Execute a SQL Statement using mssql_query()?
- How To Retrieve Error Messages using mssql_get_last_message()?
- How To Turn Off Warning Messages during PHP Execution?
- How To Receive Returning Result from a Query?
- How To Loop through Result Set Objects using mssql_fetch_array()?
- How To Retrieve Field Values using mssql_result()?
- How To List All Field Names in the Result Set using mssql_field_name()?
|