Hi Noah,
You can use the job scheduler to setup a function to run at a set time.
Create a backend function that will take the info out of the database and into the frontend page. Then call that function from your job scheduler.
Job Scheduler info:
If the info displayed is linked to the database, you could use 2 databases. For example, ‘DB_Pending’ and ‘DB_Live’. Write your information into the ‘Pending’ DB, and then using the job scheduler copy over anything in Pending into Live. Depends on your application of course.