Hi,
I have the following interface for a 35 day month calander script that I am writing. The interface is called for use with an html page. I am supposed to collect user input which includes day, month and their event.
blankEventsJan = [
,
,
,
,
]
I have already collected user input to tell me what day, month and event is required. Now I need a way to insert the user info into the correct month and return the month in the same interface forum as above. I have tried to create a new file which has a line(35) for each day, I have found ways of reading the lines but cannot seem to get it to return the above tamplate form. nested lists are giving me problems.
What I was hoping to do was create a separate calander file for each month, gather user input, select the correct calander month for reading , editing it with users events and then writing it back to file.
Any ideas?