Ver Mensaje Individual
  #6 (permalink)  
Antiguo 20/01/2015, 10:19
vargas_jimenez
 
Fecha de Ingreso: diciembre-2014
Ubicación: Madrid
Mensajes: 26
Antigüedad: 10 años, 3 meses
Puntos: 0
Respuesta: Redirección URL con Login PHP

Buenas,
Gracias por las respuestas.

El código que estoy usando es este:

Código PHP:
// Obtengo url
        
$url $_GET["url"];
     
        print 
$url// esto es para verificar que este tomando bien la url
     
        
if(!empty($url)) {
            
header("Location: ".$url);
        }
     
    
?>       
           

   </div>
   <!-- end of custom login message -->
      
       <!-- end of login form -->
      
     <form id="query" method="POST" form action="http://moodle.dominio.com/login/index.php"  autocomplete="off">
       <div class="form-group">
          <label for="username">Usuario/a</label>
          <input name="username" id="username" class="form-control" type="text">

       </div>
       <div class="form-group">
          <label for="password">Contraseña</label>
          <input class="form-control" id="password" name="password" type="password">
       </div>

       <input type="submit" value="Entrar" class="btn btn-primary btn-lg">

       <!-- The hidden fields -->
          
          <input name="one" value="login.esymar.com" type="hidden">
<input name="two" value="pinit" type="hidden">
<input name="creds_from_greq" value="1" type="hidden">
<input name="three" value="1" type="hidden">
<input name="four" value="a5" type="hidden">
<input name="five" value="" type="hidden">
<input name="six" value="login.esymar.com" type="hidden">
<input name="seven" value="login.esymar.com" type="hidden">
<input name="relay_url" value="" type="hidden">
<input name="eight" value="" type="hidden">
<input name="fr" value="" type="hidden">
<input name="hostname" value="" type="hidden">
<input name="nine" value="PInit" type="hidden">
<input name="file" value="" type="hidden">
<input name="flag" value="" type="hidden">
<input name="referer" value="" type="hidden">
<input name="post_stuff" value="" type="hidden">
<input name="sess_re" value="0" type="hidden">
<input name="pre_sess_tok" value="0" type="hidden">
<input name="first_kiss" value="1417295303-872190" type="hidden">
<input name="pinit" value="1" type="hidden">
<input name="reply" value="1" type="hidden">
<input name="create_ts" value="1417295303" type="hidden">

       <!-- The GetCred target, if defined -->
          
       <!-- End of inserted stuff. -->
   </form> 
Gracias nuevamente.