QUOTE (DougSimpson @ Aug 29 2003, 06:36 AM)
"Set a suitable output file for it (e.g., latestposts.htm). Then use a PHP or SSI include statement on the other page to pull in the file."
When you create your new index template, there's a field above the box where you place your template code called "Output File" - if you "set" the output file to "latestposts.htm", then when you save and rebuild that template, you'll see that new file at
http://www.yoursite.com/latestposts.htm Cool, no?

Then, if you want that file to show in your destination page, and you can use PHP, you'd find the spot in your HTML on the destination page where you want the list to show up and insert what's called an include statement:
CODE
<? include '/path/to/your/latestposts/file.php' ?>
That's the server path to your file, which usually includes your username and "public_html" or "www" because the file is saved in your directory that's visible on the web.
Using PHP basically means changing the file extensions on your pages to .php
Here's more information about that - if you don't want to do that for your destination site, you can use SSI if it's available, or there are some neat things you can do with something called an .htaccess file on your server to process files behind the scenes.
Does that help?
Donna