RE: [PHP] Creating Rows and Columns Using for() Loops

2004-07-19 Thread php-list
[PHP] Creating Rows and Columns Using for() Loops [EMAIL PROTECTED] wrote: > >|--|--| - >-| > |MON JUL 5 |TUE JU

Re: [PHP] Creating Rows and Columns Using for() Loops

2004-07-09 Thread Rory McKinley
[EMAIL PROTECTED] wrote: |--|--|- -| |MON JUL 5 |TUE JUL 6 | etc... | -||--|--|--- ---||-

Re: [PHP] Creating Rows and Columns Using for() Loops

2004-07-08 Thread Jason Barnett
I populated the guest's name statically so I can see how the loop works. The looping is wrong and it only yields 7 rows. In the first row it has 1 column of data, the second row has two columns of data, the third one has three columns of data, and so on. How do I fix it to where each date column h

RE: [PHP] Creating Rows and Columns Using for() Loops

2004-07-08 Thread php-list
I wrote this in plain text. I hope it came out well... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 9:02 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Creating Rows and Columns Using for() Loops Chris, It's a little difficult to

RE: [PHP] Creating Rows and Columns Using for() Loops

2004-07-08 Thread php-list
08, 2004 6:54 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Creating Rows and Columns Using for() Loops On Thu, 8 Jul 2004 18:17:25 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > for ($i = 0; $i < count($num_days); $i++) { [snip] > for ($j = 0; $j

Re: [PHP] Creating Rows and Columns Using for() Loops

2004-07-08 Thread barophobia
On Thu, 8 Jul 2004 18:17:25 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > for ($i = 0; $i < count($num_days); $i++) { [snip] > for ($j = 0; $j < 32; $j++) { [snip] > } [snip] > } > How do I fix it to where each date column has > exactly 32 rows of guest names? it looks like you n