Total PERL newbie here.
Let's say I have a text file with the following:
count = 485
lookfeel = 3245
navigation = 6709
usability = 9976
detail = 8567
These are answers from a questionnaire. They are running totals. Every time a questionnaire is answered, I'd like to add to the count and to the running totals. I would write a CGI script to read these values into variables, add to them, and then write the values back to this text file. What's the simplest way to do it?? I have found the tutorials on the web lacking in terms of file manipulation.
Thanks
Let's say I have a text file with the following:
count = 485
lookfeel = 3245
navigation = 6709
usability = 9976
detail = 8567
These are answers from a questionnaire. They are running totals. Every time a questionnaire is answered, I'd like to add to the count and to the running totals. I would write a CGI script to read these values into variables, add to them, and then write the values back to this text file. What's the simplest way to do it?? I have found the tutorials on the web lacking in terms of file manipulation.
Thanks