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 6132133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:03:49+00:00 2026-05-23T17:03:49+00:00

Firstly I’m very new to web development so forgive me if this is a

  • 0

Firstly I’m very new to web development so forgive me if this is a stupid or repeated question.

All my web pages have the same header so I simply add the following line to the top of every page:

    <?php require('header.html') ?>

This works fine. But now I’d like to vary the image in the header depending on which page it is on. I’m thinking about using a php function like this:

    function create_header($image){
        //1. echo contents of header.html

        //2. replace default image location with $image if not null
    }

Problem is I don’t know how to do steps 1 or 2. Is this possible and/or is there a better way of doing what I want?

  • 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-05-23T17:03:49+00:00Added an answer on May 23, 2026 at 5:03 pm

    You should use some basic form of templating.

    Let’s say your header looks like this:

    <div id="header">
        <img src="images/myimage.jpg" alt="" />
        <h1>Welcome to my site!</h1>
    </div>
    

    If we modify it to turn the image into a variable we get this:

    <div id="header">
        <img src="images/<?php echo $header_image; ?>" alt="" />
        <h1>Welcome to my site!</h1>
    </div>
    

    Now all you have to do is set your variable before you include your header file like so:

    <?php
    $header_image = "image2.jpg";
    include "header.html";
    ?>
    

    This concept of basic templating can be applied to an entire page template and is not limited to header files.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Firstly, very sorry if this is not a true stackoverflow question. But it's something
Firstly sorry if this is a common question but I couldn't find anything on
Firstly, I know this [type of] question is frequently asked, so let me preface
Firstly I would say that I have read this post however I still have
Firstly, I have migrated my CVS repository into SVN repository. I checked out this
Firstly, let me just say that I'm very new to JSR-170 and Jackrabbit/Lucene in
Firstly I'm very new to PHP, I'm trying trial and error method to get
Firstly, thanks for taking the time to read and possibly comment on this question.
Firstly I want to thank all of you who have helped me understand Normalization
Firstly I have tried to re create this within a JSfiddle but unable to,

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.