Code:
print FILE "$eventdate\:\:$sortdate\:\:$event\:\:$description\:\:$location\:\:$special\n";
The code above works, and it took me a while to suss that the code below wasn't, as it was only writing the last field $special
Code:
print FILE "$eventdate::$sortdate::$event::$description::$location::$special\n";
It looks like the use of unescaped :: colons, was deleting the previous fields. Anyone got any ideas as to why that might be
--Paul
cigless ...