<?

$lines = file("items.txt");

$i = 1;
while (count($lines) > 0)
{
    $random = rand(0, count($lines) - 1);
    $line = array_splice($lines, $random, 1); 
    echo "$i.  $line[0]<br>\n";
    $i++;
}


