I was wondering if anyone could help me authenticate users to a SQL Server using Windows Domain Authentication?
you might have to do somthing like this tog et the username
<?php $username = str_replace("DOMAIN\\\\", "", $_SERVER['REMOTE_USER']); ?> Hello <?php printf("$username"); ?>, and welcome!