Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/05/2012, 15:00
raul_romero
 
Fecha de Ingreso: julio-2008
Mensajes: 91
Antigüedad: 15 años, 10 meses
Puntos: 6
Respuesta: Redirección con variable

Prueba así y nos comentas:
Código Javascript:
Ver original
  1. <script language="javascript">
  2. alert ("Se ha ACTUALIZADO correctamente el Instructor");
  3. location.href="instructoresCompleto.php?clv_instru ctor="+document.getElementById('clv_instructor').value;
  4. </script>

Y en PHP lo recibes así
Código PHP:
Ver original
  1. <?php
  2. echo $_GET['clv_instru ctor'];
  3. ?>