I have a working connection to an MSSQL server via PHP PDO.
$mssql = new PDO('dblib:host=1.2.3.4;dbname=databasename', 'username', 'password');
I now need this connection to be secure, sending all transactions over SSL. I do not see any references to secure connections in the PHP manual for the DBLIB driver.
Can someone provide some insight on how I might enable this connection over SSL? (I have the ability to export and import certificates across both servers, if needed.)
EDIT: I'm on PHP 5.5.9.