Is there another way of including a web page into your own page other than iframe?

Glenn

Member
I used to use the php code "include" but that can no longer be used. I'm looking for a better way including one page from one of my sites into another.

One problem I have with using an iframe is that it does not link to the real page. I want a link to go to the actual page it is linked to.
 
Last edited:

Phreaddee

Super Moderator
Staff member
Copy n paste will do the trick if its only one page, or alternatively just have a link to it...
Whats the content? and the purpose?
 

Glenn

Member
Copy n paste will do the trick if its only one page, or alternatively just have a link to it...
Whats the content? and the purpose?

I don't quiet think copy and paste will work.

If I have the site site1a.com and I want to "include" site2b.com/newpage.htm I can't do it with include ('http://site2b.com/newpage.htm') like I used to in older versions of php.
 

conor

New Member
try using file_get_contents:

Code:
echo file_get_contents( 'http://site2b.com/newpage.htm' );
 
Top