Jump to content

PHP & Head Tag


AshleyByrom

Recommended Posts

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

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

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.