$sql = "select from table1
select from table2
select * from table3";
$result = mssql_query($sql, $link)
using the above code, how can I tell how many tables are in $result? Obvisouly I have 3, but how can I tell in code? I tried count($result); but that didn't work.
Thanks
tk