I would like to be able to automatically update gcal from a form as follows:
A. On my form I enter the name and phone number of a person I want to stay in touch with over the course of the year (jon smith 555.555.1212). I want the posting to take the name and phone number, and insert them into a MySQL table. There, they are merged with the data from another table, which consists of 3 unique sequential follow-up events that are each 28 days apart based on the form submitted date:
- jon smith 555.555.1212 + call for lunch meeting (28 days from initial post date)
- jon smith 555.555.1212 + email info on topic of interest (56 days from initial post date)
- jon smith 555.555.1212 + call for office visit (84 days from initial post date)
This should repeat:
- jon smith 555.555.1212 + call for lunch meeting (112 days from initial post date)
- jon smith 555.555.1212 + email info on topic of interest (140 days from initial post date)
- jon smith 555.555.1212 + call for office visit (168 days from initial post date)
B. after the data are merged into the MySQL table, I would like take the info created on the table to automatically be exported to Google calendar with reminder dates and times.
Any idea how to do this? I know how to import a CSV file to gcal manually; is it possible to do it via a PHP page with form to MySQL to gcal, or is there a more efficient way?
If it matters, I am using Godaddy as host (linux)