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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:20:35+00:00 2026-06-18T03:20:35+00:00

I haven’t coded in a while and I’m trying to find the easiest solution

  • 0

I haven’t coded in a while and I’m trying to find the easiest solution to this problem.

I have 20+ images on the server (labelled 1.png, 2.png, 3.png, etc.) and I’m using PHP to render three of them to my website at a time.

All I want is to make it so every twelve hours a new image replaces one of the old images. So for example it starts by rendering images 1, 2 and 3 and after twelve hours it switches to 2, 3 and 4.

What’s the best way to achieve this effect?

  • 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-18T03:20:36+00:00Added an answer on June 18, 2026 at 3:20 am

    This can be done in simple PHP (since you mentioned PHP).

    $numOfImages = 20;
    $unit = date('j') * 2; // Day of the month, doubled to simulate chunks of 12 hours.
    if (date('G') < 12) { // Hours 0 - 23
        $unit--;
    }
    
    $image1 = $unit % $numOfImages;
    $image2 = ($unit + 1) % $numOfImages;
    $image3 = ($unit + 2) % $numOfImages;
    
    var_dump($image1);
    var_dump($image2);
    var_dump($image3);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Haven't found a solution to this problem yet, have tried some things... I have
Haven't done as much of Javascript as I should have done. I am trying
Haven't seen this before so hopefully someone has a easy solve, I have a
Haven't found a working solution as of yet. I have three different versions of
Haven't come across this in ages and when I searched for the solution I
Haven't seen many Geneva related questions yet, I have posted this question in the
Haven't been able to find this one out. How are Bitmaps stored in memory
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
Haven't been programming in JS for a while. Now, I have following thing: <html>
I haven't seen any documentation from this.. If I have <%= best_in_place @user, :city,

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.