I have this php code:
and I want to rewrite it in a language that will allow me to keep the .html extension of my webpage, is there a language that would be good at this? I didn't think javascript would be good, but maybe vbscript or something, i'm not sure.PHP Code:$array = file("test.txt");
shuffle($array);
for ($i=0; $i<20; $i++) {
echo $array[$i];
}
