
randor
User
Apr 23, 2001, 6:01 AM
Post #2 of 4
(378 views)
|
ok, i am pretty sure this is what you are looking for.. mind you it is a bit sloppy, but it will get the affect you want, and it is quick: @a = ('one','two','three','four','five','six','seven','eight','nine','ten','eleven','twleve','thirteen','fourteen'); $aa = '1'; foreach $a (@a) { if ($aa == '1') { print qq~<TD>$count - $a</TD></TR>~; $aa--;}else {print qq~<TR><TD> $count - $a</TD>~; $aa++} } Randor
|