![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
16/02/2011, 11:47
|
| | Fecha de Ingreso: febrero-2011
Mensajes: 4
Antigüedad: 14 años Puntos: 0 | |
Respuesta: Abrir una HTML en un IFRAME desde PHP Intenta mezclando javascript con php a mi me da muy buenos resultados:
<?php
if(condicion)
{
?>
<script type="text/javascript">
iframe = document.getElementById('NombreDelFrame');
iframe.src = 'http://www.google.com';
</script>
<?php
}
?> |