15 lines
576 B
PHP
15 lines
576 B
PHP
<?php
|
|
/**************** Servername\Instance ****************/
|
|
$ServerName = "MS-SQL-Server-Host, 59001";
|
|
$changeDataInSQLPassword = "AdminPass";
|
|
/**************** Cathalog\User ****************/
|
|
$ConnectionInfo = array( "Database"=>"DB-Name",
|
|
"UID"=>"SQL-Username",
|
|
"PWD"=>"SQL-Password",
|
|
"Encrypt"=>false,
|
|
"TrustServerCertificate"=>false,
|
|
"CharacterSet" => "UTF-8");
|
|
|
|
/********************************************************/
|
|
|
|
?>
|