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