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, I want to restrict this question to web development only. So this is
Firstly, this is not a question about repository synchronisation for which there are numerous
Firstly, let me set out what I'd like to do. Assume I have three
Firstly, I'm pretty new to C++. I believe that getline() isn't a standard C
Firstly, bear with me here. I have a custom model binder which is successfully
Firstly anyone else trying to get onto forum.hibernate.org. I have been trying for a
Firstly, is it possible? Been struggling with this one for hours; I think the
Firstly, this seems like (from ContourPlot) a fairly straightforward maximization problem, why is FindMaximum
Firstly: apologies if this is a duplicate post. Things got a bit confusing as
Firstly, I'm new to groovy as of yesterday, so what I say could be

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.