Omdat ik nogal veel shit download via rapidshare, al die links op warez fora meestal niet klikbaar zijn maar een hele lijst zijn, en ik nooit zin heb om vaak 80 links met de hand te selecteren en kopieren/plakken heb ik net ff handig scriptje gemaakt.
Voor als je geen downloadmanager wil
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Clickable URL</title>
</head>
<body>
<form method="post">
Insert links (every link on a new line):<br />
<textarea rows="20" cols="100" name="links"><?php echo @$_POST['links']; ?></textarea><br /><br />
<input type="submit" name="submit" value="Make clickable list" />
</form>
<?php
if( isset($_POST['submit']) )
{
echo '<hr />';
$expl = explode("\n", $_POST['links']);
foreach($expl as $value)
{
$value = str_replace('www.', '', $value);
$value = str_replace('http://', '', $value);
$value = 'http://www.'.$value;
echo '<a href="'.$value.'">'.$value.'</a><br />';
}
}
?>
</body>
</html>
misschien heb je er wat aan