Links sorter for uploaders

Status
Not open for further replies.

RT

Active Member
5,314
2009
1,571
85
Check this out, i found this site that sort links from this to this, It's quite helpful if ur uploading a huge game,hd movies...etc :)

Code:
http://www.tactools.org/Sorter.php
 
47 comments
Good find. :)
Also for RS premium users just use this link to sort all your files....

Code:
https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi?export=1
 
Anyways, here's a clone for the same script, coded in in a few minutes, roughly.

<span>
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title> Link Sorter </title>
</head>

<body>
<div style="width:425px;">
<form method="post" action="">
<textarea name="links" rows="12" cols="50"></textarea><br /><br />
<div align="right">
<input type="submit" value="Sort Links">
</div>
</form>
</div>
<?php
if($_POST){

    function cmp($a, $b)
    {
        if ($a == $b) {
            return 0;
        }
        return ($a < $b) ? -1 : 1;
    }
    
    $links = explode("\n", $_POST['links']);

    usort($links, 'cmp');

    foreach ($links as $key) {
        echo "$key<br />\n";
    }

}
?>

</body>
</html>
 
Good find. :)
Also for RS premium users just use this link to sort all your files....

Code:
https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi?export=1

Yeah RS sort links automatically, Some other hosts don't :P and you're welcome guys.
 
How to sort

Code:
part1
part1
part1
part2
part2
part2
part3
part3
part3

To

part1
part2
part3
part1
part2
part3
part1
part2
part3


Pls Help
 
^ use the link sorter in RUM:
[noparse]http://www.warez-bb.org/viewtopic.php?t=1320733[/noparse]

[slide]http://www.imgcentre.com/img/uploads/big/73380265b3.jpg[/slide]
 
RUM is best for rs
no need to use link sorter in it.just copy links from the file page,it will be sorted and copied to clipboard.
its easy to copy hf links as it will be sorted by default, no tool needed
 
Status
Not open for further replies.
Back
Top