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

I have a form that allows users to enter a date of birth: ie:
I have a textarea in a form that allows users to enter a list
I have a safecracker form that allows users to enter title, url_title body content.
I am developing a form that allows users to enter their credit card information
I have a simple HTML Form that allows the user to enter some text
I have a tell a friend pop up email form that allows users to
I'm creating a form that allows users to upload 11 images, i have 11
We have a form that allows a user to filter a list with by
I have a product registration form that allows the user to add additional product
I have a pretty simple HTML form where users can enter in information about

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.