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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:00:24+00:00 2026-05-28T07:00:24+00:00

I have an issue with PHP files displaying information site. I’m working on a

  • 0

I have an issue with PHP files displaying information site. I’m working on a localhost and my .htaccess file is correctly configured to display .php files, as a .php file works on an html file.

But, when I tried to make a switch variable to switch between different pages dependent on a date…

<?php
switch(date('l')) {
   case 'Sunday': $page = 'sunday.html'; break;
   case 'Monday': $page = 'monday.html'; break;
   case 'Tuesday': $page = 'tuesday.html'; break;
   case 'Wednesday': $page = 'wednesday.html'; break;
   case 'Thursday': $page = 'thursday.html'; break;
   case 'Friday': $page = 'friday.html'; break;
   case 'Saturday': $page = 'saturday.html'; break;
}
echo file_get_contents($page);
?>

..then the php include code inside the .html would not work. Same with php echo, it would not display. Where might I be going wrong? My index.html (where onair.php works and is displayed on index.html) links to /programmes/schedule.html which then links to a respective page on a given day. There, the PHP code that is the same as in index.html does not display… It is simply commented in Google Chrome.

Any help would be appreciated. Cheers.

  • 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-28T07:00:25+00:00Added an answer on May 28, 2026 at 7:00 am

    You need to include the pages instead. Neither file_get_contents nor echo will execute PHP script.

    <?php
    switch(date('l')) {
       case 'Sunday': $page = 'sunday.html'; break;
       case 'Monday': $page = 'monday.html'; break;
       case 'Tuesday': $page = 'tuesday.html'; break;
       case 'Wednesday': $page = 'wednesday.html'; break;
       case 'Thursday': $page = 'thursday.html'; break;
       case 'Friday': $page = 'friday.html'; break;
       case 'Saturday': $page = 'saturday.html'; break;
    }
    
    include $page;
    ?>
    

    Of course, you can make it simpler, too:

    <?php
    include strtolower(date('l')) . '.html';
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some issues with a PHP file that is not working properly. The
In my .htaccess file I have the following rule defined. RewriteRule t/([^.]+)/$ /video/tag.php?tag=$1 [QSA]
I have PHP issue, I'm trying to force a file download using php if
I have a weird issue where my PHP files have lost their line breaks
I have an issue with php where code works on on computer but wont
We have an issue using the PEAR libraries on Windows from PHP . Pear
I have an issue going on here. I am using PHP to get values
I'm just starting with Object Oriented PHP and I have the following issue: I
So I'm not to OOP in PHP. Here is my issue I have a
I have a simple XML extraction issue that should be solvable with straight 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.