Ver Mensaje Individual
  #7 (permalink)  
Antiguo 23/08/2012, 03:22
Komart
 
Fecha de Ingreso: marzo-2011
Mensajes: 30
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: Cambiar medidas <iframe>

Ya lo solucione!!

Cita:
$url = $obj->youtube;
parse_str(parse_url($url, PHP_URL_QUERY), $qstring);

echo <<<EOF
<object width="400" height="228">
<param name="movie" value="http://www.youtube.com/v/{$qstring['v']}&hl=en&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/{$qstring['v']}&hl=en&fs=1"
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true"
width="400"
height="228"></embed>
</object>
EOF;