Buying Simple Html script/prog

Status
Not open for further replies.

maloxi

Active Member
1,991
2010
228
440
hi guys,
so i'm trying to find someone that can code a simple program or script that should do this:

1) i provide some links like
video.part1.rar (RS)
video.part2.rar (RS)
video.part1.rar (MU)
video.part2.rar (MU)
2) it must gives me this html simple code
Rapidshare: CD1 - CD2
Megaupload: CD1 - CD2
with cd1 and cd2 clickable links.

i will use many more hosts, so i will tell you wich to add

Ask everything you didnt understand and let me know the price you ask
thanks

igor
 
7 comments
try this

PHP:
<?
if(isset($_POST['links'])) {
$links=$_POST['links'];
$lll=array();
$pattern = '/http[^ ["<\t\n\r\f]{1,}/';
preg_match_all($pattern, $links, $matches);
for($i = 0; $i < count($matches[0]); $i++)
{
	$link = $matches[0][$i];
	if(stristr($link,'wupload')) $lll['Wupload'][]=$link;
	elseif(stristr($link,'filesonic')) $lll['Filesonic'][]=$link;
	elseif(stristr($link,'fileserve')) $lll['Fileserve'][]=$link;
	elseif(stristr($link,'rapidshare')) $lll['Rapidshare'][]=$link;
	elseif(stristr($link,'megaupload')) $lll['Megaupload'][]=$link;
}

foreach($lll as $host=>$ll) {
	$i=1;
	echo $host.': ';
	foreach($ll as $l) { echo '<a href="'.$l.'">Link #'.$i.'</a> '; $i++; }	
	echo '<br />';
}

}
else {
echo '<form method="post"><textarea name="links"></textarea><input type="submit" /></form>';	
}

this is what you get:
[SLIDE]http://i.imgur.com/DxBOw.png[/SLIDE]
 
I can make you desktop app. Price 30$, time few hours(probably one or two). Payment Alertpay. PM me with more details if you are interested.

Regards.
 
Status
Not open for further replies.
Back
Top