sabbbbih has asked for the wisdom of the Perl Monks concerning the following question:

Hello All,
I am newbie in perl and having some problem. the situation is i have a table in html and one column displays list of files and second colum should display the file selected. ie
File Name Data file 1 File 2 File 2 data File 3
so if i select a file from File Name it should display result in Data. (I am genereating list of files from
@files = <./logs/*.xml> foreach $file(@files) { print <<MARKER; <tr> <td class="copy11" width="163" bgcolor="#EFEFEF">$file</td> </td> }
I am not sure how to pass on the value in Data.

Replies are listed 'Best First'.
Re: Displaying XML in table
by Lawliet (Curate) on Aug 05, 2008 at 01:21 UTC