>> >> What am I missing? >> > > Is the slash before the domain name above just a typo in your e-mail? > It took a while to get mssql configured to where I could test it here > since we're using Microsoft's SQL Server Driver for PHP (if you are > running PHP under Windows, I'd strongly recommend this over the old > mssql library anyway), but this worked: > > <?php > > $hostname = 'hostname:1433'; > > $username = 'DOMAIN\Username'; > $password = 'password'; > > $conn = mssql_connect($hostname, $username, $password) or die('Unable > to connect'); > > var_dump($conn); > > ?> > > Andrew > It was a typo :) The installation is running on FreeBSD. I am looking at TDS right now as a possible cause. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php