AshleyByrom Posted July 22, 2009 Share Posted July 22, 2009 Okay well my presumption is this would work but I thought I would check before I do it. Basically if I made a php file named includes.php and then on a php page (such as index.php) I placed <?PHP require_once("includes.php"); ?> <body>.... Would that work? If i placed ALL of the <head> code inside the includes.php page? That way every page would have the same <HEAD> and it could be easily changed? Link to comment https://forums.phpfreaks.com/topic/166984-php-head-tag/ Share on other sites More sharing options...
smerny Posted July 22, 2009 Share Posted July 22, 2009 yea Link to comment https://forums.phpfreaks.com/topic/166984-php-head-tag/#findComment-880379 Share on other sites More sharing options...
ignace Posted July 22, 2009 Share Posted July 22, 2009 Or you'd create a index.php (possibly also include includes.php) and include a page whenever it is requested (?page=hello) and the default otherwise. Which gives you a single entry point instead of: adding require_once('includes.php') to each and every page. Link to comment https://forums.phpfreaks.com/topic/166984-php-head-tag/#findComment-880381 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.