Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/06/2010, 07:41
Avatar de wiwi74
wiwi74
 
Fecha de Ingreso: marzo-2008
Mensajes: 515
Antigüedad: 16 años, 2 meses
Puntos: 10
Respuesta: como agrego un pop up en php?

Prueba esto:

Crea un archivo php, y tan solo ejecutalo:

Código PHP:

<?
$thisvar 
"Valor de la variable \$thisvar que se vera el la popu";
if(
$thisvar != ""){
?>
<script type="text/javascript" language="javascript">
$v=window.open();
$v.document.write('<?=$thisvar?>')
</script>
<?
}
?>
</style>

Saludos..!