Jump to content

page within a page


gammaman

Recommended Posts

This is really more of an html question but involves php.

Is it possible to put a page within a page using a php include without the use of frames?

Something like this

 

//page1.htm

This is the page that should include another.

<div align: right>

<?php include("page2.htm")?>

</div>

 

//page2.htm

This is the page that goes in the first

 

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/191150-page-within-a-page/
Share on other sites

you can do that, but you will not get something like frames unless the HTML of page1 or page2 creates frames. basically, whatever is in page2.html will be shown between the <div> tags in page1.html.

 

why njot just try this sort of thing and see what happens? the world won't end.

Link to comment
https://forums.phpfreaks.com/topic/191150-page-within-a-page/#findComment-1007893
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.