<?php
// load flat file into an array
$myfile = 'test.txt';
$lines = file($myfile);
// randomly generate a number between 0 and the count of the last line in the array.
$line = rand(0, count($lines) - 1);
// server redirect to the randomize line of the file
header("Location: $lines[$line]");
?>
<?php
// load flat file into an array
$myfile = 'test.txt';
$lines = file($myfile);
// server redirect to the randomize line of the file
header("Location: " . array_rand($lines));
?>