This is very possible with PHP, you can dump the contents of a text file into a variable with the function file_get_contents(). I can't remember exactly how the function works, it might build an array with a key for each new line, or it might just treat it as a whole string, which you could then convert into an array with explode() using the newline character as the seperator, then loop through the array with a foreach loop to create your list of links.
Oh, if your new to PHP, you might want to read through a few pages of the manual to pick up the general syntax and theories, as well as looking up the functions for more info and examples on how they can be used. php.net
__________________
Kris
|