Joomla在我的网站上放置一个外部页面

时间:2016-11-09 12:44:51

标签: php html iframe joomla

我指示创建一个旅游游览网站。本网站必须只是一个包含酒店,汽车和航空公司菜单的标题。提供酒店内容,但来自其他网页。现在我的问题是,我可以放置整个外部网页(https://brands.datahc.com/?a_aid=143748&brandid=422829&languageCode=EN) 在我的网站上?

我已经通过iframe多次尝试过了。但我总是得到我想避免的滚动条。

1 个答案:

答案 0 :(得分:-1)

也许如果你尝试使用php函数file_get_contents

<?php
$brands = file_get_contents('https://brands.datahc.com/?a_aid=143748&brandid=422829&languageCode=EN');
echo $brands; ?>

或者您可以选择没有滚动条的iframe,如此JSFiddle

HTML:

<iframe src="https://brands.datahc.com/a_aid=143748&brandid=422829&languageCode=EN" height="100%"></iframe>

CSS:

body, html { width:100% ;
    height:100% ;
    overflow:hidden ;
}

iframe { width:100% ; // set your width here
        height:100% ;
    border:none ;
}