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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:41:39+00:00 2026-05-20T08:41:39+00:00

I have a form that allows users to enter a date when they are

  • 0

I have a form that allows users to enter a date when they are available in the format dd/mm/yyyy.

What I want to be able to do is echo out each date between now (including today) and the date entered.

Could someone help me out? I’m not quite sure how to go about it.

For example, if someone was to enter 12/12/2011 and the date today was 10/12/2011 it would echo the following:

10/12/2011  
11/12/2011  
12/12/2011

Any help would be great.

  • 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-20T08:41:39+00:00Added an answer on May 20, 2026 at 8:41 am

    First of all you are using a DD-MM-YYYY, make sure your separators are – so that you don’t have converting them to timestamps. Here is an example with the current format etc.

    You should have more checks to make sure you do not get an infinite loop :).

    $start_date = "10/12/2011";
    $end_date = "12/12/2011";
    print_r(dates_between($start_date, $end_date));
    
    function dates_between($start_date, $end_date)
    {
        $date = array($start_date);
        $start_date = str_replace('/', '-', $start_date);
        $end_date = str_replace('/', '-', $end_date);
    
        $current_date = $start_date;
        while($current_date != $end_date)
        {
            $current_date = date("d-m-Y", strtotime("+1 day", strtotime($current_date)));
            $date[] = str_replace('-', '/', $current_date);
        }
        return $date;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

C sharp newbie question...I have a simple asp.net form that has a textbox that
We currently have some php code that allows an end user to update records
I'm developing a PHP-MySQL app that enables registered users to enter text comments. Problem
I want to put a validation that the user always enters a value in
I've looked at the various options that seem to be available on the .NET
I'm using some HTML5 form features to progressively enhance the user experience of my
I'll try to explain this logically as best as I can. Basically I have
I'm working on a project which allows the advanced user to define their own
All, Sorry in advance - I'm not a PHP expert or knowledgeable in design
I just got started running UI tests against my ASP.NET MVC application using WatiN.

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.