On Wed, 26 Sep 2007, Todd White wrote:
I think the $cnt does not work.
You need to use $row and $col. I think it assumes array of array (perldoc
perllol) for $col or $maxcol to work.
[-
@test_arr = (['A', 'B', 'C'], ['D', 'E', 'F'], ['G', 'H'] );
-]
<table>
<tr>
<td>[+ $test_arr[$row][$col] +]</td>
</tr>
</table>
ABC
DEF
GH
If you set $maxcol = 2, then it will be
AB
DE
GH
I guess even if $cnt is not broken, it will not work for 2 dimensional
arrays. Please correct me if I'm wrong.
Regards,
Ben K.
Developer
http://benix.tamu.edu
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]