a stored procedure can return any of three types of "results":
1) a results set (like a query) containing rows and columns of data.
2) output parameters which the stored procedure has changed since it was called
3) a return value, the optional integer value that was supplied to the "return" command inside the procedure
my question all along has been how do I get #3 (from the list above) from PHP and a SQL Server stored procedure???