On Oct 18, Brian Arnold said: > $table_data .= td([ > '$columns[0]', '$columns[1]', '$columns[2]', '$columns[3]', > '$columns[4]', '$columns[5]', '$columns[6]', '$columns[7]', > '$columns[8]', '$columns[9]', '$columns[10]','$columns[11]', > '$columns[12]','$columns[13]','$columns[14]','$columns[15]', > '$columns[16]','$columns[17]','$columns[18]','$columns[19]', > '$columns[20]']);
Are you sure you want single quotes here?! I don't think you do. And you probably just want to use: $table_data .= td(@columns); It looks MUCH cleaner that way. -- Jeff "japhy" Pinyan [EMAIL PROTECTED] http://www.pobox.com/~japhy/ RPI Acacia brother #734 http://www.perlmonks.org/ http://www.cpan.org/ ** Look for "Regular Expressions in Perl" published by Manning, in 2002 ** -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]