<?php
include( "./page.header.php" );
$pageTitle = "$config->appName > Session informations";
html::form( "submit.php", "get" );
FormStart( $pageTitle );
FormLine( " ", "LDAP persistent vars (\$ldapmanager)" );
foreach( $ldapmanager as $k => $v )
{
FormLine( $k, $v );
}
FormLine( "current DN (\$dn)", @$dn );
FormLine( "current back URL (\$prevURL)", @$prevURL );
// FormLine( " (\$dn)", $ );
echo "</table>\n</form>\n";
include("./page.footer.php");
?>