>I can connect using ODBC but not the mssql functions
If you can connect via ODBC, then it means that the
SQL server is set up to accept your connection. Most
likely your environment is not the problem in this case.
You might need to explore the php manual about the how-to
things to connect to t
>I can connect using ODBC but not the mssql functions
Are the MSSQL extensions installed? That could be it.
--Jason
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators
You neet to install the Client Tools for MSSQL Server (basically the file
ntwdblib.dll) and the enable the mssql extension. You can do this in php.ini py
removing the semi colon in front on the line
;extension=php_mssql.dll
Or if you are using the CGI version you could use dl("php_mssql.dll");