in reply to output from a form page with multiple selects

Change:
$theData .= "$header\n@values\n\n";
to
$theData .= "$header\n".(join ("\n", @values))."\n\n";

Replies are listed 'Best First'.
Re^2: output from a form page with multiple selects
by Anonymous Monk on Jun 02, 2005 at 14:50 UTC
    Thanks for your quick response and answer!!!!