Re: [PHP] MSSQL Stored Proc

2012-08-28 Thread Andrew Ballard
On Tue, Aug 28, 2012 at 1:03 PM, Phillip Baker wrote: > Greetings all, > > I am having some trouble with running a stored proc on an MSSQL DB. > I am new to using MSSQL. > > > > $link = mssql_connect($server, $db, $password); > > > > if(!$link){ > > die('Error connecting to MSSQL d

[PHP] MSSQL Stored Proc

2012-08-28 Thread Phillip Baker
Greetings all, I am having some trouble with running a stored proc on an MSSQL DB. I am new to using MSSQL. $link = mssql_connect($server, $db, $password); if(!$link){ die('Error connecting to MSSQL database at '.$server); } else { $storedproc = "SP_DialerVa

Re: [PHP] MSSQL stored proc

2004-04-13 Thread Curt Zirzow
* Thus wrote Aris Santillan ([EMAIL PROTECTED]): > hi everyone > > can you give me a sample code of using MSSQL stored procedures? > and its explanation.. Here's a good place to start. http://php.net/mssql_execute Curt -- "I used to think I was indecisive, but now I'm not so sure." -- PH

[PHP] MSSQL stored proc

2004-04-13 Thread Aris Santillan
hi everyone can you give me a sample code of using MSSQL stored procedures? and its explanation.. thanks