Thank you for the prompt reply.
I appologize if I was not clear.
Let me see if I can clarify.
Basically, I would like the php code to check a parameter, if certain parameters are met, then a "looped" block of text would display. If the parameters are NOT met, then an alternate block of text would be met.
So:
If $counter was set to 1 -> a block of looped text would display.
If $counter was set to 0 -> an alternate block of text would display.
Does this make sense?
Basically I know how to acomplish this basic principle with an "if" "else" statement. However, I need a loop statement because I am trying to display results. If the variable ($counter) is set to 0, I do not want results displayed but rather some alternate text messages.
Thanks!