how can i read the data (simple list) from three txt files as one block of data that i can then rsort etc and print to page???
this works for one txt file....
$botty1 = file("./log.txt");
rsort($botty1);
$cbot = 1;
foreach($botty1 as $bum1){
$bott = explode("||", $bum1);
if ($cbot <7){
echo"$bott[0]";
}
$cbot++;
}