| 
<HTML>
<?php
 /*
 * Your webmaster must create a group named "Test" for testing purposes
 * Then, he must add some user(s) (including yours) in the "Test" group
 * Finally, run this page and see if this works :)
 */
 
 include("./class_adsi_access.php");
 
 $objValidar = new acceso;
 $objValidar->validar_acceso("Test");
 ?>
 <h2>If you see this message, it's because you are included in the user group.</h2>
 </HTML>
 |