gammaman Posted February 6, 2010 Share Posted February 6, 2010 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 More sharing options...
Catfish Posted February 6, 2010 Share Posted February 6, 2010 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 More sharing options...
Hussam Posted February 6, 2010 Share Posted February 6, 2010 You certainly can do that, but make sure that you don't have errors redefining functions if you included a file that has a function in each page then included one of them in the other. good luck! Link to comment https://forums.phpfreaks.com/topic/191150-page-within-a-page/#findComment-1007907 Share on other sites More sharing options...
premiso Posted February 6, 2010 Share Posted February 6, 2010 On a side note: You have your files with .htm extension. Unless your server is set to parse .htm as .php this will not work. Just an FYI. Link to comment https://forums.phpfreaks.com/topic/191150-page-within-a-page/#findComment-1007911 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.