Re: [PHP] Baffling output

2003-01-03 Thread Chris Shiflett
--- Steve Keller <[EMAIL PROTECTED]> wrote: > Here's a good tip someone gave me when I first started > learning PHP: when you're dealing with HTML, it's a good > idea to use \n at the end of your echoed lines and \t's > at the beginnings to create staggered indentations, > this makes it a little ea

RE: [PHP] Baffling output

2003-01-03 Thread Ford, Mike [LSS]
-Original Message- From: Steve Keller To: [EMAIL PROTECTED] At 1/3/2003 12:25 AM, Lightfirst wrote: Can someone explain to me why the loop that counts to 99 appears before the 5 by 5 grid in the following php code? Yes. ## else { ## echo ""; ## echo ""; ## echo "Hello" ;

Re: [PHP] Baffling output

2003-01-03 Thread Steve Keller
At 1/3/2003 12:25 AM, Lightfirst wrote: Can someone explain to me why the loop that counts to 99 appears before the 5 by 5 grid in the following php code? Yes. ## else { ## echo ""; ## echo ""; ## echo "Hello" ; $i++; ## } //for else You start the tags, but whenever your conditional echoes

Re: [PHP] Baffling output

2003-01-02 Thread Chris Shiflett
--- Lightfirst <[EMAIL PROTECTED]> wrote: > Can someone explain to me why the loop that counts to 99 > appears before the 5 by 5 grid in the following php code? There is a good chance that the problem is that your HTML table is screwed up. Make sure you close your row and table; it wasn't in the c

Re: [PHP] Baffling output

2003-01-02 Thread Joseph W. Goff
Try viewing the source that is generated in html and I bet you will find that it is broken html code. - Original Message - From: "Lightfirst" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 02, 2003 4:25 PM Subject: [PHP] Baffling output > Can someone explain to me why