I've run into an issue using MSSQL_QUERY() that I cannot seem to figure out
a work-around for.  The last field in the query is an auto-increment
starting at 100,000.  I need the MSSQL_QUERY($query) statement to print out
the result of the query (which is a stored procedure in case that wasn't
obvious).  Instead it returns True (1) or False (0?).  Does anyone have
suggestions?  I am completely stumped at this point.
 
Thanks!
 
Ryan
 
$query="InsertRequest
'1','2','3','4/11/01','5','6','7','8','9/11/01','10/11/01','11','12','13','1
4','15','';
$return=MSSQL_QUERY($query);
 
$taskid=$return;
 
-RESULT -
$taskid = 1

Reply via email to