Tema: abrir popup
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 15/12/2010, 23:42
Rolldi
(Desactivado)
 
Fecha de Ingreso: mayo-2005
Ubicación: España
Mensajes: 471
Antigüedad: 19 años
Puntos: 45
Respuesta: abrir popup

Prueba a hacer esto:

Código PHP:
<? 
$registroid
=$registro['id'];
echo 
"<a target='marco' href=javascript:window.open('edita_qt.php?qt=$regi stroid','marco','')>$registroid</a>"
?>
Ó

Código PHP:
<? 
$registroid
=$registro['id'];
echo 
"<a target='marco' href='edita_qt.php?qt=$regi stroid' onclick='javascript:window.open(this.href, this.target,'');'>$registroid</a>"
?>