Call To Undefined Function Sqlsrv_connect()
i wish to fire select query for login on user table . i am using php and ms msql server 2005 as backend my php code is correct but my database is on other p.c in network. i need to
Solution 1:
To install SQLSRV 3.0 to Apache (I assume) in Windows platform, here are the steps:
- Put the driver file in your PHP extension directory.
- Modify the php.ini file to include the driver. For example:
extension=php_sqlsrv_53_nts_vc9.dll
- Restart Apache
Then, verify the installation using phpinfo()
.
Reference: TechNet
Post a Comment for "Call To Undefined Function Sqlsrv_connect()"