View Single Post
Old 12-21-2004, 02:43 AM  
NastyJack
Registered User
 
Join Date: Dec 2002
Posts: 1,291
place this in the same dir as the file you want to shuffle and change $textfile to the filename of the list.

shuffle.php

PHP Code:
<?php

$textfile 
"urls.txt";

$data file($textfile);

shuffle($data);
shuffle($data);
shuffle($data);

$fp fopen($textfile"w+");
foreach(
$data as $line) {
  
fwrite($fptrim($data) . "\r\n");
}
fclose($fp);

?>
NastyJack is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote