douyong2531 2015-05-20 08:04
浏览 109
已采纳

电影预告片Api结果id html没有响应输出

http://trailerapi.com/api/api.php?user_trailer_limit=10&language=en link

$api_url_content='http://trailerapi.com/api/api.php?user_trailer_limit=10&language=en'; 
if(!$xml = simplexml_load_file($api_url_content))
{
echo “Error”;
}else
{

foreach( $xml as $film ) {
$movie_name= $film->name,
$movie_poster =$film->poster;
$movie_id=> $film->did;
$movie_description=$film->description;
$movie_year=$film->year;
$movie_producer=>$film->producer;
$movie_imdb=$film->imdb;
$movie_cast=$film->cast;
$movie_genre=$film->genre;
$movie_trailer='<iframe src=”http://www.dailymotion.com/embed/video    /’.$film->did.'” width=”720″ height=”480″ frameborder=”0″ allowfullscreen=”allowfullscreen”></iframe>';

INSERT INTO `trailer`.`trailers` (`id`, `name`, `description`, `poster`, `cast`,`embed`) 
 VALUES (NULL, '{$movie_name}', '{$movie_description}', 
'{$movie_poster}', '{$movie_cast}', '{$film->did}');
}

}

<?php $query=mysql_query("SELECT * FROM trailer Where id='{$_GET['id']}' Limit 1");
$fetch=mysql_fetch_array($query); ?>
<div style="width:100%">
<iframe src=”http://www.dailymotion.com/embed/video/<?php echo $embed; ?>” frameborder=”0″ 
allowfullscreen=”allowfullscreen”></iframe>
</div>

html code div responsive and player is not Responsive

How to Responsive Embed Code

output :

<div style="width:100%">
<iframe src=”http://www.dailymotion.com/embed/video/ x2pgbqt” frameborder=”0″ 
allowfullscreen=”allowfullscreen”></iframe>
</div>
  • 写回答

1条回答 默认 最新

  • duanfei8149 2015-05-20 20:34
    关注

    Your code should be like that

    <iframe src="http://www.dailymotion.com/embed/video/x2pgbqt" frameborder=”0″ 
    allowfullscreen="allowfullscreen" width="100%"></iframe>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#.net#的问题:End Function
  • ¥15 无法import pycausal
  • ¥15 VS2022创建MVC framework提示:预安装的程序包具有对缺少的注册表值的引用
  • ¥15 weditor无法连接模拟器Local server not started, start with?
  • ¥20 6-3 String类定义
  • ¥15 嵌入式--定时器使用
  • ¥20 51单片机学习中的问题
  • ¥30 Windows Server 2016利用兩張網卡處理兩個不同網絡
  • ¥15 Python中knn问题
  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库