in reply to RFC: pianobar event example
When you're building $line you can replace the concatenation operators and ' marks by using qq:
$line = qq("$data{title}","$data{album}","$data{artist}","$data{songSt +ationName}","$data{coverArt}"\n);
The documentation is here: Quote and Quote like Operators
|
|---|