Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8194081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T04:42:00+00:00 2026-06-07T04:42:00+00:00

When designing a website in PHP, you typically have a header.php file that you

  • 0

When designing a website in PHP, you typically have a header.php file that you include in every page on the site. The header.php file would include the <head> tag (among other things). However, I often find that I need to put page-specific JavaScript within the <head> tag.

The way I’ve handled this in the past is by adding IF statements to my header to determine what pieces of JavaScript should be outputted (i.e. IF this is the home page, output the JavaScript needed for the home page, IF this is the about page, output the JavaScript needed for the about page, etc.).

This is probably a terrible way to do it. What is the standard practice?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T04:42:01+00:00Added an answer on June 7, 2026 at 4:42 am

    Well, first of all, <script> tags do not need to be located in the header. It’s perfectly valid to put them anywhere in the HTML document.

    But if you’re determined to include them in the header, a simple solution is to declare a variable that the header should echo which contains your script tags. For example:

    <?php
    $scripts = "<script src='script.js' type='text/javascript'></script>";
    include("header.php");
    ?>
    

    And then your header.php script would like as follows:

    <html>
    <head>
    <!-- header stuff goes here -->
    <?php /*echo out scripts */ echo $scripts; ?>
    </head>
    <body>
    <!-- part of body goes here -->
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently designing a website that would involve storing a long list of names
I'm designing a website using PHP and MySQL currently and as the site proceeds
I'm currently designing a website for a company that uses an external site to
When designing a website I created a top.php page to hold the essence of
I'm designing a website right now, and have a menubar at the top for
I'm currently designing this website http://avs.mybigcommerce.com . The problem is that my styles.css isn't
I am designing a website that will provide continuing education courses via streaming video.
I'm designing a website for an organization that's a state chapter of a national
I am designing a website using PHP 5.2.9 and MS Sql Server 2005. I
I am using php with code igniter. I am designing a website with php.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.