Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.