Include a timestamp or datetime field for each entry in the DB. When you upload a new comic, enter the current time in that field when you do the DB insert. On your main page, do a DB select to get the latest one, something like:
SELECT col1, col2,...colN FROM table_name ORDER BY date_col DESC LIMIT 1