in reply to Re^2: while loops with two tests not working.in thread while loops with two tests not working.
my $average = 3; my $i = 0; while ($i >= 0 and $i <= $average) { print qq~<img src=".... /> ~; $i++ } [download]