Please i am trying to connect to an mssql database on a different machine. Below is my code but i just keep getting a blank page.
I dont know what the issue may be. i have installed php and the mssql drivers.
<?php
$uid = "******";
$pwd = "***\$\$****";
$DB = "***********";
$serverName = "192.***.**.***";
$connectionInfo = array("UID" => $uid, "PWD" => $pwd, "Database"=> $DB, "ReturnDatesAsStrings" => true);
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn ) {
echo "Connection established.<br />";
}else{
echo "Connection could not be established.<br />";
die( print_r( sqlsrv_errors(), true));
}
?>
"Database"=>"dbName", "UID"=>"userName", "PWD"=>"password"