Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/12/2008, 10:45
deioseayo
 
Fecha de Ingreso: diciembre-2008
Mensajes: 21
Antigüedad: 16 años
Puntos: 0
restringir acceso

Hola a todos, tengo una consulta. Veran tengo una hoaj llamada SSI.PHP esta e suna parte del codigo:

Código PHP:
function ssi_login($redirect_to 'DIRECCION DE LA PAGINA RESTRINGIDA'$output_method 'echo')
{
    global 
$scripturl$txt$user_info$context;

    if (
$redirect_to != '')
        
$_SESSION['login_url'] = $redirect_to;

    if (
$output_method != 'echo' || !$user_info['is_guest'])
        return 
$user_info['is_guest'];

    echo 
'
        <form action="'
$scripturl'?action=login2" method="post" accept-charset="'$context['character_set'], '">
            <table border="0" cellspacing="1" cellpadding="0" class="ssi_table">
                <tr>
                    <td align="right"><label for="user">'
$txt[35], ':</label>&nbsp;</td>
                    <td><input type="text" id="user" name="user" size="9" value="'
$user_info['username'], '" /></td>
                </tr><tr>
                    <td align="right"><label for="passwrd">'
$txt[36], ':</label>&nbsp;</td>
                    <td><input type="password" name="passwrd" id="passwrd" size="9" /></td>
                </tr><tr>
                    <td><input type="hidden" name="cookielength" value="-1" /></td>
                    <td><input type="submit" value="'
$txt[34], '" /></td>
                </tr>
            </table>
        </form>'

Ahora, quiero saber si es posible crear un "require" (con los datos del ssi.php) en una pagina restringida. Para que solo pueda entrar el usuario registrado y logeado.