-
-
Save MarkVilludo/06425195fee42605e7607516683ce0a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ldap_dn = "uid=".$_POST["username"].",dc=example,dc=com"; | |
$ldap_password = $_POST["password"]; | |
$ldap_con = ldap_connect("ldap.forumsys.com"); | |
ldap_set_option($ldap_con, LDAP_OPT_PROTOCOL_VERSION, 3); | |
if(@ldap_bind($ldap_con,$ldap_dn,$ldap_password)) | |
echo "Authenticated"; | |
else | |
echo "Invalid Credential"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment