i need a calendar script and event script, and i think i'll try writing my own... they'll be my first perl scripts ever 
tell me if this sounds like a good plan:
there is an admin page where you can submit entries
there is a data file for every month...
within the data file, each date with an entry has its own line. aside from the normal data fields, there will be special options, like to shade that day a different color.
admin page writes to specified month's data file, creates new one if there isn't already one. assigns id number to each submitted event.
calendar script gets month to display from query string... if there is no query string, or it is invalid, it'll display the current month. if the current month doesn't have a data file, print descriptive error message.
calendar script prints out calendar based on data file, with the name and time of each event, in it's proper date.
each event is a hyperlink to the event script with the id number as the query string.
when event script is called, uses query string to find information in data file, and print out more descriptive details about the specific event.
so, to those hardened perl programmers, does this sound good? are there any pitfalls i should look out for?
tell me if this sounds like a good plan:
there is an admin page where you can submit entries
there is a data file for every month...
within the data file, each date with an entry has its own line. aside from the normal data fields, there will be special options, like to shade that day a different color.
admin page writes to specified month's data file, creates new one if there isn't already one. assigns id number to each submitted event.
calendar script gets month to display from query string... if there is no query string, or it is invalid, it'll display the current month. if the current month doesn't have a data file, print descriptive error message.
calendar script prints out calendar based on data file, with the name and time of each event, in it's proper date.
each event is a hyperlink to the event script with the id number as the query string.
when event script is called, uses query string to find information in data file, and print out more descriptive details about the specific event.
so, to those hardened perl programmers, does this sound good? are there any pitfalls i should look out for?