e0d5ea28a4cc2b7df75e0068b2ee990486d3dc86
[ga4php.git] / example / activedirectory / index.php
1 <?php 
2 /*
3  * This example shows how you might store user data directly into AD.
4  * AD has several attributes you can use for storing your own data, and
5  * thats what we use
6  */
7
8 // set these
9 $host = "";
10 $binduser = "";
11 $bindpass = "";
12 $basecn = "";
13
14 // this is here so i can keep my atributes somewhere in the tree and not have them float around on git/svn
15 if(file_exists("../../../.dontappearingitandsvn.php")) require_once("../../../.dontappearingitandsvn.php");
16
17
18
19 ?>