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

  • Home
  • SEARCH
  • 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 6976613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:31:09+00:00 2026-05-27T17:31:09+00:00

$columns = array(‘mon’,’thu’,’wed’,’tue’, ‘fri’, ‘sat’, ‘sun’); $num_cols = count($columns); echo <table>; echo <tr>; foreach($columns

  • 0
$columns = array('mon','thu','wed','tue', 'fri', 'sat', 'sun');
$num_cols = count($columns);
echo "<table>";
echo "<tr>";
foreach($columns as $col)
{
   echo "<td>$col</td>";
   for($i=1;$i<20;$i++)
{
    echo "<tr>";
    $datetime = new DateTime();
    for($j=0;$j<$num_cols;$j++){
        $datetime->modify('+30 minutes');

        echo '<td>' . $datetime->format('H:i:s') . '</td>';
    }

    echo "</tr>";
 }
}
echo "</tr>";

echo "</table>";

How can i modify this for:

mon      |   thu     etc
10:10:10 | 10:10:10
10:40:10 | 10:40:10
11:10:10 | 11:10:10
etc

Now this bad working. I would like create simple calendar. This generated for me to many hours for one day.
Thanks for help!

Edit:
If this is simply i can use only one loop for – with hours – without $columns. but how can i make it?

i would like receive:

10:10:10 | 10:10:10 etc
10:40:10 | 10:40:10
11:10:10 | 11:10:10
etc

with $datetime->format(‘Y-m-d H:i:s’) 🙂 i dont know how i can show this is columns – from top to down, not from left to right

  • 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-27T17:31:10+00:00Added an answer on May 27, 2026 at 5:31 pm
    <?php
    
    $columns = array('mon','thu','wed','tue', 'fri', 'sat', 'sun');
    $num_cols = count($columns);
    $col = 0;
    $datetime = new DateTime();
    
    echo "<table>"; // border=\"1\" for visible border
    
    // Day header
    echo "<tr>";
    foreach($columns as $col) {
        echo "<td>$col</td>";
    }
    echo "</tr>";
    
    
    // Times
    for($i=0; $i<20; $i++) { // FIXME for more entries or other step width
        echo "<tr>";
        $datetime->modify('+30 minutes');
    
        for ($j=0; $j<$num_cols; $j++)
            echo '<td>' . $datetime->format('H:i:s') . '</td>';
    
        echo "</tr>";
    }
    
    echo "</table>";
    
    ?>
    

    Output

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given an array 'a' I would like to sort the array by columns sort(a,
I want to create an array which has two columns. The output should contain
A simple 2 dimensional array allows swapping rows (or columns) in a matrix in
If I write int *columns[32]; am I defining an array with 32 pointers to
I need to display array of 10 numbers in three columns. if i add
I have a UIPicker view containing 4 columns with the same array of 6
Is there a way to align the columns of a multidimensional array to make
I have 1 row with hundreds of columns in an array in octave/matlab example
I have a mysql fetch that is populating an associative array with columns from
I have a column array with the following values in my sheet: 11, 15,

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.