in reply to Reading multiple values from a selection with CGI.pm
is the STDOUT an explicit file handler, if so the name should be different , else if you have to print it out the default is STDOUT ,the use is redundant .to note, the split is actually on a string and not an arraymy $gene1 = $query->param('GS1'); @gene1 = split('',$gene1);
|
|---|