I've been looking for some kind of tutorial/info about how to create a very simple horizontal scrolling AJAX Ticker that pulls text to display from a MySQL database, however the only information I can find is very limited and not related to database stuff, it only reads from text files.
Does anyone know how to do this, or knoww of any good resources about this?
Thanks!
This is a pretty broad question, but your solution will end up looking something like this:
setTimeout
or setInterval
, process the results and add them to whatever data structure powers the ticker.*Yes, I realize you didn't specifically mention jQuery in your question. If you're using a different framework, Google that one instead. Point is, you should almost certainly use some type of framework for this, IMO.
If you have more specific implementation questions, fire away. Good luck!