<?php
//if (isset($_POST[''])) {$ = $_POST[''];}
if (isset($_POST['linki_p'])) {$linki_p = $_POST['linki_p'];}
if (isset($_POST['name_p'])) {$name_p = $_POST['name_p'];}
if (isset($_POST['rozmer_p'])) {$rozmer_p = $_POST['rozmer_p'];}
if (isset($_POST['mb'])) {$mb = $_POST['mb'];}
if (isset($_POST['gb'])) {$gb = $_POST['gb'];}
$rozmer_p = trim($rozmer_p); // удаление конечных и начальных пробельных символов
$rozmer_p = str_ireplace(".",",",$rozmer_p); // если в поле где то присутствует точка заменяем ее на запятую
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Оформление ссылок</title>
<link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
$links = "$linki_p";
$links = explode("\n", $links);
if (isset($_POST['go']))
{
?>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0" class="tb">
<tr><td align="center" valign="top">
<textarea cols='72' rows='10'><?
echo"<p><br></p><br><br /><br /><p>[size=2][color=#FF0000][b]Скачать $name_p ($rozmer_p MB):[/b][/color][/size]</p><p><br /></p>[hide][quote]";
foreach($links as $link){
$prefs = parse_url($link);
$hosts[$prefs['host']][] = $link;
}
foreach($hosts as $host => $link){ // $link[0] - Ссылки, $host - Название сервера
$host=str_ireplace("www.","",$host);
$host=ucfirst($host);
$host=str_ireplace("rapidshare.com","[color=#001A49]Rapidshare.com[/color]",$host);
$host=str_ireplace("depositfiles.com","[color=#FF9933]Depositfiles.com[/color]",$host);
$host=str_ireplace("LetItBit.net","[color=#FF66CC]LetItBit.net[/color]",$host);
$host=str_ireplace("VIP-file.com","[color=#0033FF]VIP-file.com[/color]",$host);
$host=str_ireplace("sms4file.com","[color=#5A7C0B]Sms4file.com[/color]",$host);
if ($host != "[color=#001A49]Rapidshare.com[/color]" ||
"[color=#FF9933]Depositfiles.com[/color]" ||
"[color=#FF66CC]LetItBit.net[/color]" ||
"[color=#0033FF]VIP-file.com[/color]" ||
"[color=#5A7C0B]Sms4file.com[/color]")
{
$host=str_ireplace("$host","[color=#666666]".$host."[/color]",$host);
}
if(count($link) == 1){
$l=$l+1;
if ($l == 1){echo " c ";}else{echo " | ";}
echo "[size=2][b][url=".$link[0]."]".$host."[/url][/b][/size]";
}else{
echo "<p><br /></p>c [size=2][b]".$host."[/b][/size]\n";
foreach($link as $index => $linki){ // $linki - Ссылкм в частях
$index=$index+1;
if ($index == 1){}else{echo " + ";}
echo "[size=1][b][url=http://".$linki."][color=#666666]Часть ".$index."[/color][/b][/size][/url]";
}
}
}
echo "<p><br /></p><p><br /></p>[spoiler=Список ссылок]".$linki_p."[/spoiler][/quote][/hide]";
?></textarea>
<?
}
?>
</td>
</tr>
</table>
<form action="" method="post">
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0" class="tb">
<tr>
<td colspan="2" class="tb_2">Сылки:</td>
</tr>
<tr>
<td width="200" class="td_1">Название проги:</td>
<td width="400"><input name="name_p" type="text" value="<?=$name_p?>" size="67"></td>
</tr>
<tr>
<td class="td_1">Размер:</td>
<td><input name="rozmer_p" type="text" value="<?=$rozmer_p?>" size="10">
</td>
</tr>
<tr>
<td colspan="2">
<textarea name="linki_p" cols="72" rows="10"><?=$linki_p?></textarea>
</td>
</tr>
<tr>
<td colspan="2"><input name="go" value="Отправить" type="submit"></td>
</tr>
</table>
</form>
</body>
</html>