Status
Not open for further replies.
6 comments
Just use regex on the page. Coded up a simple php grabber to do the task:

PHP:
<?php

// FileJungle Folder Links Grabber -- By Soft2050

if (isset($_POST['fjlinklist'])) {

    echo '<strong>All Links</strong><br />';
    
    $fjsource = file_get_contents($_POST['fjlinklist']);

    preg_match_all('#http:\/\/www\.filejungle.com\/f\/\w+#' ,$fjsource ,$match);
    $links = $match[0];
    foreach($links as $link){
    echo "$link<br />";
    }

} else {
    echo '<form method="post" action="">
        Enter the filejungle link list url here:<br>
        <input type="text" value="" name="fjlinklist" size="100">
        <input type="submit" value="Grab All Links">
    </form>';
}

?>

Just create any php file and add the above source to it and visit at your web server.

09ea7d3733.png
 
Status
Not open for further replies.
Back
Top