Collections:
PHP MSSQL - mssql_fetch_array() - Looping through Returning Rows
PHP MSSQL - How To Loop through Returning Rows?
✍: Guest
The best way to query tables and loop through returning rows is to run a SELECT statement with the mssql_query() function, catch the returning object as a result set, and loop through the result with mssql_fetch_array() function in a while loop as shown in the following sample PHP script:
<?php $con = mssql_connect('LOCALHOST','sa','FYIcenter'); mssql_select_db('FyiCenterData', $con); $sql = "SELECT id, url, time FROM fyi_links"; $res = mssql_query($sql,$con); while ($row = mssql_fetch_array($res)) { print($row['id'].",".$row['url'].",".$row['time']."\n"); } mssql_free_result($res); mssql_close($con); ?>
Using mssql_fetch_array() is better than other fetch functions, because it allows you to access field values by field names or field positions. If you run this script, you will see all rows from the fyi_links table are printed on the screen:
101,dev.fyicenter.com, 102,dba.fyicenter.com, 1101,moc.retneciyf.ved, 1102,moc.retneciyf.abd, 2101,dev.fyicenter.com, 2102,dba.fyicenter.com,
Don't forget to call mssql_free_result($res). It is important to free up result set objects as soon as you are done with them.
⇒ PHP MSSQL - Updating Existing Rows in a Table
⇐ PHP MSSQL - Returning Result Set Objects
⇑ SQL Server FAQs - PHP MSSQL Functions - Managing Tables and Data Rows
2024-02-28, 1383🔥, 0💬
Popular Posts:
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...