When a php website can be opened using xampp/wamp on localhost, how can php file be open in the browser with a MSSQL Server Database? Can it also accessed using localhost. How?

有帮助吗?

解决方案

Yo can simply specify MSSQL connection settins in same way what you did with MySql. Before proceeding you check xampp/wampp if php_mssql extension is enabled or not in your php configuration.

example-

$server = 'server_address';
$user   = 'username';
$passwd = 'passwod';
$dbname = 'db_name';

$conn   = mssql_connect($server, $user, $passwd);
mssql_select_db($dbname, $conn);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top