feat: add MVC base, with auth to ldap

This commit is contained in:
unknown
2025-02-02 10:22:31 -08:00
commit 3b1749292e
12 changed files with 448 additions and 0 deletions

6
divers/ldap.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
$ldapconn = ldap_connect("ldap://intranet.epul3a.local")
or die("Impossible de se connecter au serveur LDAP");
if ($ldapconn) {
echo "Connexion réussie!";
}