I am trying to develop a simple site that:
1- Automatically fetch from my db the 5 latest entries. Entries are news headline titles that I input manually.
2- display these entries on a simple webpage (no fancy formatting or anything else)
3- The site periodically searched for newly posted entries and displays them without having the user refreshing the webpage.
I am using Django, learning how to implement different functions as I go.
Question (to be able to implement point 3):
1- Is RSS feed what I should be looking for? Django has the syndication feed framework and I am wondering if I should use it or not.
2- If RSS is not the way to go, can someone point me to right path / possible tutorial that might help me out? I am stuck on this and new to web programming.
Thx in Advance for any help!!