Re: [PHP] continue after break

2003-01-22 Thread Leif K-Brooks
Then just don't have the image inside the loop... Remon Redika wrote: I have put Image inside of my loop... and that image located between and I want the image not doing loop too. cause i just need one image.., I just do looping for my data: and

Re: [PHP] continue after break

2003-01-22 Thread Dan Lowe
You are misunderstanding how break and continue work. When you call break, the loop ends. When you call continue, the loop starts over, skipping the part between continue and the end of the loop. When you call break, you're ending the loop. You never even get as far as continue (let alone as

Re: [PHP] continue after break

2003-01-22 Thread Dan Lowe
On Wednesday, January 22, 2003, at 10:44 PM, Reymond wrote: Hi everyone, I made a while loop and i'd like to know how to continue looping after I break it, and . Here is my script : I found just break looping on my page, can't continue :( break ends a loop. That's what it does. If you don't

RE: [PHP] continue after break

2003-01-22 Thread John W. Holmes
The solution is to take out your break... why is it there?? ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ > -Original Message- > From: Reymond [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 22, 2003 10:4