PHP MSSQL - How To Loop through Returning Rows?

Submitted by: Administrator
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','GlobalGuideLine');
mssql_select_db('GlobalGuideLineDatabase', $con);

$sql = "SELECT id, url, time FROM ggl_links";
$res = mssql_query($sql,$con);
while ($row = mssql_fetch_array($res)) {
print($row['id'].",".$row['url'].",".$row['time']." ");
}
mssql_free_result($res);

mssql_close($con);
?>

Submitted by: Administrator

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 ggl_links table are printed on the screen:

101,www.GlobalGuideLine.com,
102,www.GlobalGuideLine.com/sql,
1101,www.retneciyf.com/html,
1102,www.retneciyf.com/seo,
2101,www.GlobalGuideLine.com/xml,
2102,www.GlobalGuideLine.com/xslt,

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.
Submitted by: Administrator

Read Online MS SQL Server Job Interview Questions And Answers