Help for this page

Select Code to Download


  1. or download this
    
        $line = '"'.$data{title}.'","'.$data{album}.'","'.$data{artist}.'"
    +,"'.$data{songStationName}.'"';
    ...
            $line .= ',"' . $data{coverArt} . '"' ;
        }
        $line .= "\n";
    
  2. or download this
        my @values = map { $data{$_} } qw/title album artist .../;
        $csv->combine(@values);
        $line = $csv->string();