mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
13 lines
263 B
PHP
13 lines
263 B
PHP
<?php
|
|
$serverName = 'localhost';
|
|
$connectionOptions = [
|
|
'Database' => 'SampleDB',
|
|
'Uid' => 'sa',
|
|
'PWD' => 'your_password',
|
|
];
|
|
// Establishes the connection
|
|
$conn = sqlsrv_connect($serverName, $connectionOptions);
|
|
if ($conn) {
|
|
echo 'Connected!';
|
|
}
|