I need some advice on how to build a simple calendar table.
All I need is the following fields:
-id (primary key)
-date
-time
-subject
-html
-posted_by
I just want to query for the latest 3 upcoming events and be able to add/edit/delete events using PHP. Is this table structure the best bet to go? Should I break it down (eg: instead of date have month, day, and year?)? I want to keep the number of columns as limited as possible because it would be easier for me to code.