I use PHP 5.6, I downloaded all the necessary driver for the work, I try to execute the following code
$host = ""; $conInfo = array("Database"=>"", "UID"=>"", "PWD"=>""); $con = sqlsrv_connect($host, $conInfo); if($con){ echo "Success!"; }else{ echo "Fail.."; } Displays Fail..Please tell me what am I doing wrong?
sqlsrv_errors. - teran