Código de ejemplo:
<?php
//conexión con servidor de hostingmontevideo.com
$myServer = "localhost\SQLEXPRESS";
$myUser = "Database User Name"; // reemplace con sus valores
$myPass = "Database Password"; // reemplace con sus valores
$myDB = "Database Name"; // reemplace con sus valores
//create an instance of the ADO connection object
$conn = new COM ("ADODB.Connection")
or die("Cannot start ADO");
//define connection string, specify database driver
$connStr = "PROVIDER=SQLOLEDB;SERVER=".$myServer.";UID=".$myUser.";PWD=".$myPass.";DATABASE=".$myDB;
$conn->open($connStr); //Open the connection to the database
?>