Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

executing sql server stored procs in php

Status
Not open for further replies.

cwinans

Programmer
Mar 26, 2001
102
0
0
US
Can anyone give me a nice example of how to execute sql server stored procedures in php... I've searched everywhere I could think of and found nothing? Maybe instead of using the built in mssql* functions someone knows how to do it using the generic odbc functions? Is it even possible? I hope this helped! ;-)
- Casey Winans
 
well, when i was using ms sql server with php, i've used the odbc functions (it was somehow easier to work with) and when calling some stored procedure just instead of using querystring "select * from table" i placed there "myprocedure @param1=value1, @param2=value2", or something similar (i forgot the syntax) and it worked ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top