Is it possible to test for two separate conditions in one while loop? eg while(condition1 and condition2){ do this }
while(($this > 1) && ($this < 100)) { print "$this<br>"; }