• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Auto Updating Content?

miniajuer

Junior Member
I don't know if this is possible without some kind of CMS... but I'd like to be able to have a certain section of a website rotate content daily, from a pre-made list of content.

The idea is a daily devotional, and I have about 24 months worth of material to work with... is there a way to do this, and have the content change automatically?

I don't know anything about ASP... I've only worked with html, css, and javascript.
 
Without a database or learning any other languages, you could store the content in text files on the web server. Then use javascript to retrieve the text file (maybe based filename for the month) and parse it to show the right content depending on the day.

The alternative is to learn ASP, PHP, Rails or whatever else to do a simple CMS.
 
Without a database or learning any other languages, you could store the content in text files on the web server. Then use javascript to retrieve the text file (maybe based filename for the month) and parse it to show the right content depending on the day.

The alternative is to learn ASP, PHP, Rails or whatever else to do a simple CMS.

You can do the same thing in PHP, and presumably ASP/ASP.NET or Rails, with relatively little effort. You don't need to implement anything remotely approaching a full CMS.
 
Back
Top