i figure this is a LE script.
heres how to execute it.
<?php
virtual("./le/link.cgi");
?>
and if you want to use php just put the text file into an array, count the lines, choose your field seperator (deliminator)
$lineData = explode("|", $lineData);
and your ready to get data from it.
heres how you would do it in cgi (aka perl)
(note: i wrote this from a gnu machine, not windows)
open(DATA,"$db1");
flock (DATA,2);
@ = <DATA>;
flock (DATA,8);
close(DATA);
@ = sort {$b <=> $a} @;
foreach $line(@) {
$counter++;
@linedata = split (/|/, $line);
print "$linedata[1]\n";
}
something like that...
have fun.