On 19-Oct-99, [EMAIL PROTECTED] wrote:

> Hey guys,
> 
> I'd like to write somthing.  Um, how bout a script which churns out html
> table rows and columns at my whim?
> 
> Don't make it too easy on me, but could someone give me a nudge in the
> right direction?

try a two-level block, something like:
table-input: [
    ["Data 1.1" "Data 1.2"]
    ["Data 2.1" "Data 2.2"]
]

and then loop thru it, using two foreach loops, like:
foreach row table-input [
    foreach data row [
        ...
    ]
    ...
]


Best regards
Thomas Jensen

Reply via email to