in reply to Re: Yet Another Stupid CGI Question
in thread Yet Another Stupid CGI Question
A couple of things that might make your life a bit easier:
I don't know what your data structure looks like, but this sample code might help:
--my @list = ('chk1|name1|cost1|number1|txt1', 'chk2|name2|cost2|number2|txt2', 'chk3|name3|cost3|number3|txt3'); print table(Tr([map { td([split /\|/, $_])."\n" } @list ]));
"The first rule of Perl club is you don't talk about Perl club."
|
---|