"Fossies" - the Fresh Open Source Software Archive

Member "adLDAP-4.0.4/examples/menu.php" (13 Apr 2013, 394 Bytes) of package /linux/www/old/adLDAP-4.0.4.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PHP source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 <?php
    2 session_start();
    3 ?>
    4 <html>
    5 <head>
    6 <title>adLDAP authentication</title>
    7 </head>
    8 
    9 <body>
   10 
   11 <p>If you called authenticate.php and you are redirected to this page, you successfully authenticated against Active Directory with your credentials.</p>
   12 
   13 User Details for <?php $_SESSION['username']; ?><br />
   14 <pre>
   15 <?php
   16 print_r($_SESSION['userinfo']);
   17 ?>
   18 </pre>
   19 
   20 </body>
   21 </html>