[[WHILE:phpboolean]]
Loop through the following statements before [[END_WHILE]] repeating while condition is true.
Example:
[[INITIALIZE:counter|1]]
[[WHILE:$counter<=10]]
[[PRINT:counter]][[cr]]
[[INCREMENT:counter]]
[[END_WHILE]]
Outputs the number 1 through 10, one number per line.
See also WHILE_SMALLER, WHILE_SMALLER_OR_EQUAL.