So basically I am working on a wiki and there are some tables in different parts of the wiki that I would like to display on a main page. I know I can copy and paste them but I would like to make it so that when those tables get updated my main page is automatically updated with the new values. Is there a way to do this? Oh the wiki can do HTML and CSS.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
A good wiki will segment the content elements so that they can be displayed on multiple pages but only require one source. Whether that feature exists in your Wiki or not isn't something we can answer without knowing what it is. Otherwise, the iFrame solution would work, but it'll load the entire wiki page that contains the table...not just the table itself. Plus, iFrames can introduce other issues such as printing difficulties in some browsers. |
|||
|
|
|
There's lots of options. You can store the table data in a database if it's going to be constantly updated. You can store it in a flat file. You can include() your table pages in the main page. Whichever works best for you. |
|||
|
|