I had thought about converting my movie reviews, currently a bunch of HTML web pages, to a database using MySQL and php. Then I thought I could just use Microsoft Access which I’m pretty familiar with to create HTML pages. I had done something similar at work where we had a database of companies and I was able to create an index page and then separate pages for each company. Then we would move the pages generated to our website. That site has since been replaced by a dynamic web-based application under a (very expensive) contract.
Right now I have an archive of every movie review by the year the movie was released. I am also using frames to navigate by using two frames: one with a drop down list of years and another frame with a list of movies for that year. To make it easy, I just have a separate HTML file for each year that consists of a drop-down list and is loaded when a year is selected. One other thing I do at the end of each year is generate a ranked list of all the movies I saw that year. That’s easy in HTML, but the tricky part is that I break ties and sometimes rank independently of whatever grade I originally gave the movie (so I might have a B- ahead of a B movie once I think about it). On that ranking page I give a short summary of my review for each movie. Using an ordered list, it is easy for me to insert a movie, since I am not coming up with the ranking numbers, but letting the HTML do it based on where the movie falls in the list. The HTML assigns the numbers, not me. This makes it really easy to add a movie to the list or change places of a movie.
