Talon21 Posted June 8, 2008 Share Posted June 8, 2008 Hi I'm in the middle of building a new web site, I want to separate a page to two, that means one page to control to content and the header to control SEO elements such as Title, Keywords etc... Any suggestions? Link to comment https://forums.phpfreaks.com/topic/109264-seperates-elements/ Share on other sites More sharing options...
pugboy Posted June 8, 2008 Share Posted June 8, 2008 You can create an index.html with: <?php include("header.php"); include("homecontent.php"); include("footer.php"); ?> Then just fill header.php, homecontent.php, and footer.php with whatever. You could also use iFrames or frames if you wanted to. Link to comment https://forums.phpfreaks.com/topic/109264-seperates-elements/#findComment-560448 Share on other sites More sharing options...
GingerRobot Posted June 8, 2008 Share Posted June 8, 2008 You could also use iFrames or frames if you wanted to. But try not to. Link to comment https://forums.phpfreaks.com/topic/109264-seperates-elements/#findComment-560463 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.