Skip to content

Instantly share code, notes, and snippets.

@fahadsadah
Created June 29, 2009 16:03
Show Gist options
  • Save fahadsadah/137673 to your computer and use it in GitHub Desktop.
Save fahadsadah/137673 to your computer and use it in GitHub Desktop.
<?php
$ds = ldap_connect('ldap.cluenet.org');
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_start_tls($ds);
$sr=ldap_search($ds, $_GET["dn"], $_GET["filter"], unserialize($_GET["return"]));
$info = ldap_get_entries($ds, $sr);
header("Content-type: text/x-json");
echo(json_encode($info));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment