lol, yes it's 3:30AM, but I'm not sleepy, I'm more hungry! 😃
Well I use a script that reads from a folder and takes all files with a *.exe extention and puts it as a text.
so it's not based at all on mysql. Not the script. the filename as numbers (version numbers) like
v1.0.1.exe
v1.1.0.exe
v2.0.0.exe
...
and i filtered all [v] and [.] and [exe]
so what's left is only a numer
101
110
200
...
and not i want only that the bigges numer is shown!
...
if (is_array($myfiles)) {
arsort($myfiles);
while (list($fname,$value)=each($myfiles))
{
echo "$fname";
}
...