try changing the name of your file to .shtml from .html and put this code in where you want the last 10 to show up on your page:
Your choice of
<!--#include virtual="last10/last10.php"-->
or
<!--#include file="last10/last10.php"-->
If folder your.shtml file is in is not above the last10 folder in your directory, you need to do "../last10/last10.php" instead (note the "../" ) That tells it to look up one folder before looking down for the last10 folder .
|