hi
the microsoft sql functions (not mSQL) are at:
http://uk.php.net/manual/en/ref.mssql.php
unfortunately it doesn't have the generic script i need, and i can't really think of an easy way of outputting the headings, then the row data - i've always just used
$result01 = mssql_execute($query01); //execute query01
while($row01 = mssql_fetch_array($result01)){ //output row data until recordset empty
thanks guys!
dgr