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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:24:44+00:00 2026-06-08T01:24:44+00:00

I have an application that has an included header file in each page. The

  • 0

I have an application that has an included header file in each page. The pages are not organised into folder dues to the nature of my app and because included files within pages tend to break.

So I am trying to use breadcrumbs by having two arrays about the header include. One with the page names and one with their corresponding URLs, as so:

$breadCrumbs=array("Department Managment", "Class Managment"); //The breadcrumb page names
$breadLinks=array("/department.php","/class.php"); //The breadcrumb URLs
require_once "../include/headers.php"; //Include header

What I really need help with is the foreach loop. Here is what I have so far:

 <?php
foreach ($breadCrumbs as $bc){
        foreach ($breadLinks as $bl){
echo ("<li class='ELEMENT-crumb'><a href='" . $bl ."'>" . $bc . "</a></li>");}} ?>

However this returns four breadcrumbs in this order:

Department Managment – /department.php

Department Managment – /class.php

Class Managment – /department.php

Class Managment – /class.php

Any help would be appreciated, thanks.

  • 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-08T01:24:45+00:00Added an answer on June 8, 2026 at 1:24 am

    One method of accomplishing this is to use one array which uses the descriptions as keys and the URL’s as their associated values. Then you need only one loop:

    // Array indexed by page name
    $breadCrumbs=array(
      "Department Managment" => "/department.php",
      "Class Managment" => "/class.php"
    );
    
    // Loop over the array only once
    foreach ($breadCrumbs as $page => $url) {
      // Using htmlspecialchars() in case it includes <,>,& etc...
      echo ("<li class='ELEMENT-crumb'><a href='" . $url ."'>" . htmlspecialchars($page) . "</a></li>");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that has a .sql file in it. The sql file
I have an application that has 2 beans with the same name, but which
We have an application that has a database full of polygons (currently stored as
I have a application that has an activity that shows message logs. The thing
I have an application that has two localization options at the moment through .resx
I have an application that has two threads. The first one (the main thread)
i have an application that has a dependancy on gdiplus. i need the application
I have an application that has a list of buttons and has customized tooltips.
We have an application that has a WCF service (*.svc) running on IIS7 and
I have an application that has a UILabel displaying the current date and time,

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.