mssql_connect() is no longer supported by PHP since PHP 7.0 and was depreciated in 5.3.
Create a phpinfo.php file:
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
Open the page, and on the first page that's opened, third from the bottom, check if the registered streams contains 'sqlsrv':
Registered PHP Streams php, file, glob, data, http, ftp, zip, compress.zlib, phar, sqlsrv
If it doesn't then you have to enable the module.
Try uncomment this code that you changed:
From:
; On windows: extension_dir = "D:xamppphpext" "
To:
On windows: extension_dir = "D:xamppphpext"
And let us know the outcome.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…