Easily Update Table From Remote File
I apologize if I'm missing any details to this question, I really don't know what I need.
I've got a table of the "Top X" of the week that I need to update daily. I want it to be as easy 'in and out' as possible to update.
Ideally I'd like the information taken from a file I can edit and upload to my server and auto-update the table, or something like this.
My list of Top 10 'xyz' is currently static. This means every time the order changes (which could be 20 times a day) I have to manually update the table. Is there a way开发者_StackOverflow I can dynamically update my table in accordance to the "official list" on another website?
Is this possible? I'm going to guess they will require PHP, but really haven't gone into too much of it. Any links to help me accomplish this are very much appreciated!
There are many ways to do this. Here are a few.
Just Edit the HTML
Read from a database.
Dynamically load txt file (eg JSON,CSS) via JavaScript.
Dynamically load html file (with just the table) via JavaScript.
精彩评论