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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:04:20+00:00 2026-06-01T00:04:20+00:00

Is there a query to run in php that would let you insert all

  • 0

Is there a query to run in php that would let you insert all dates in between two dates?

For example, entering 03/20/2012 and 03/20/2013 and populating mysql with all the dates in between the two?

I was making a ticketing system for an airline and they have 13 flights daily from 20+ locations and inserting them manually was getting tedious.

I wanted to insert the dates as well as the values for each day

EG.

 FROM                TO              Date_From              Date_To
     Dar Es Salaam      Zanzibar         03/20/2012             03/21/2012
     Dar Es Salaam      Zanzibar         03/21/2012             03/22/2012

Note

I do not want to GENERATE this list (the questions I’ve researched only answered how to generate a list) I want to POPULATE a MySQL DB

Any help would be greatly appreciated

  • 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-01T00:04:22+00:00Added an answer on June 1, 2026 at 12:04 am

    You could use this function to generate an array of dates

    function dateRange( $first, $last, $step = '+1 day', $format = 'd/m/Y' ) {
    
        $dates = array();
        $current = strtotime( $first );
        $last = strtotime( $last );
    
        while( $current <= $last ) {
    
            $dates[] = date( $format, $current );
            $current = strtotime( $step, $current );
        }
    
        return $dates;
    }
    
    $dateRange = dateRange("03/20/2012", "03/20/2013);
    

    and then iterato over the array to insert the data

    $stmt = $dbh->prepare("INSERT INTO table (from, to, date_from, date_to) VALUES (:from, :to, :datefrom, :dateto)");
    $stmt->bindParam(':from', "Dar Es Salaam");
    $stmt->bindParam(':to', "zanzibar");
    $stmt->bindParam(':from', $datefrom);
    $stmt->bindParam(':to', $dateto);
    for ($i = 0; $i < count($dateRange); $i++){
       $datefrom  = strototime($dateRange[$i]);
       $dateto  = strototime($dateRange[$i+1]);
       $stmt->execute();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to query a MySQL database that gives me all blobs
Is there a JSON query class or jQuery plugin that I can use to
There are two types of query parameters binding in the Hibernate Query. One is
Is there a way to query the database and retrieve a list of all
(PHP/MySQL) Let me preface by saying that this works, and that I'm wondering if
I have this query for an application that I am designing. There is a
I have the following SQL query that I am trying to run inside Microsoft
Say there is a special PHP function foo($number) that returns double the value of
I have a script which allows to display search results. Given a query there
Is there a single query (subqueries in it are allowed) where I can copy

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.