View Single Post
Old 12-21-2004, 02:47 AM  
ytcracker
stc is the greatest
 
ytcracker's Avatar
 
Join Date: Dec 2002
Location: rip sean murray
Posts: 12,403
Quote:
Originally posted by NastyJack
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);

?>
haha123 should be left squiggle bracket
__________________
www.ytcracker.com | www.digitalgangster.com
i love you
ytcracker is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote