First of all, what sort of info will be in the file and ultimately in the box? How large is the Table cell?
If the 'box' is large enough, it might be a place to use an iframe to insert information, but there may be scrolbar and or viewport size issues that won't be nice.
Sample here. Other than that, I don't think Html by itself will handle dynamic info.
Use php 'includes' to fill the box with text is an option, too. Simply 'include' a file by name. The server needs to be php enabled for php scripts to run, though.
CODE
<?php include 'filename.txt' ?>
I have a script which requires php enabled to run it and it looks up stuff from flat files.
This
Sidebar Generator script looks for files within a specific folder and displays the file names as links.
This Other One reads a list of folder names from a flat file and creates a list of links using the same techniques as above for several folders.
In either case, the list of links is based on the folder contents at the time the script is run. If you want to change a link list, upload/ddelete a file to the various folders.
So it kinda depends on the nature of the content you want to include inside the box, and how 'dynamic' it is.
Reply