thx ......works great
just needed txt filter
<?
$dir=opendir("/home/domain");
while($and = readdir($dir)) {
if (eregi(".txt$", $and)) {
include($and);
}
}
closedir($dir);
?>
1 more thing....!
how do i call from a directory im already in?
ie the page with this code is in the directory with the txt files.
thx anyway.