Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/01/2011, 00:22
Geze
 
Fecha de Ingreso: marzo-2010
Mensajes: 151
Antigüedad: 14 años, 1 mes
Puntos: 0
No visualiza el iframe

Hola, he hecho este script en PHP, pero no logro saber porqué no se ve el iframe, lo he probado desde localhost.

Código PHP:
Ver original
  1. <?php
  2. //Recibe por URL la web
  3.  $web=$_GET['web'];
  4. //strstr() ...según busca la cadena dentro de otra
  5.  if(strstr($web,"forosdelweb"))
  6.  { ?>
  7.   <iframe scrolling="NO" src="<?php echo $web;?>" frameborder="0" height="400" width="600"></iframe>
  8.  <?php }
  9.  elseif(strstr($web,"maestrosdelweb"))
  10.  { ?>
  11.   <iframe scrolling="NO" src="<?php echo $web;?>" frameborder="0" height="400" width="600"></iframe>
  12.  <?php }
  13.  elseif(strstr($web,"identi.ca"))
  14.  { ?>
  15.   <iframe scrolling="NO" src="<?php echo $web;?>" frameborder="0" height="400" width="600"></iframe>
  16.  <?php }
  17.  else
  18.  { ?>
  19.   <iframe scrolling="NO" src="<?php echo $web;?>" frameborder="0" height="auto" width="auto"></iframe>   
  20.  <?php }
  21. ?>