in reply to Re^12: Save form data with decoded URL chars
in thread Save form data with decoded URL chars

Don't use save, the sole purpose of save is to write a CGI object to disk, and read it back from disk

Don't parse a ->save'd to get data out of it, that is a job for CGI.pm

You already have a CGI object, use it, use the param method to get the posted form data, then use open and http://search.cpan.org/perldoc/Text::CSV#print to write it as CSV, all quoted escaped and comma seperated

  • Comment on Re^13: Save form data with decoded URL chars