Question

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?

Était-ce utile?

La solution

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);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top