<html>
<head>
<title>Sicherheitstool</title>
</head>

<body>
<center>
<?php

$allyfleet=$_POST["allyfleet"];
$replace=$_POST["replace"];
$replacedurch=$_POST["replacedurch"];

$allyfleet=str_replace($replace,$replacedurch,$allyfleet);



$fleet=explode("Bereitgestellt von: ",$allyfleet);
$count=count($fleet);

$add=$fleet[0];

for($h=0; $h<=$count; $h++)
{

$fleet[$h]=explode("\n",$fleet[$h]);
$fleetcount[$h]=count($fleet[$h]);

for($c=0; $c<$fleetcount[$h]-2; $c++)
{
$fleet[$h][$c]=str_replace("\r","",$fleet[$h][$c]);
if($fleet[$h][$c]=="" OR $fleet[$h][$c]=="\n" OR $fleet[$h][$c]=="\t" OR $fleet[$h][$c]=="\r" OR strlen($fleet[$h][$c])<5 )
{
}
else
{
//$fleet[$h][$c]=str_replace("\n","",$fleet[$h][$c]);
$fleet11[$h].= "".$fleet[$h][$c]."\n";

}

}
$fleet11[$h]="".$fleet11[$h]."\n";
}
for($p=1; $p<$count; $p++)
{
$flotteninfo[$p]="Bereitgestellt von: ".$fleet11[$p]."";
$gesfleet.= $flotteninfo[$p];
}

$allyfleet="".$add."\n".$gesfleet."";



if (preg_match("/zu Flotte hinzufügen/", $allyfleet))
{
$split=explode("zu Flotte hinzufügen",$allyfleet);
$allyfleet=$split[0];
}



if (preg_match("/Position/", $allyfleet))
{
$allyfleet=strstr($allyfleet,"Position");
$allyfleet=str_replace("Position","",$allyfleet);
}



for($r=500; $r>0; $r--)
{
$allyfleet=str_replace("".$r.":","00:",$allyfleet);
$allyfleet=str_replace(":".$r."",":00",$allyfleet);
}



if (preg_match("/Bereitgestellt von: /", $allyfleet))
{

$allyfleet=explode("Bereitgestellt von: ",$allyfleet);
$edit=$allyfleet[0];

$count=count($allyfleet);

for($c=1; $c<$count; $c++)
{

    $fleet[$c]=explode("\n",$allyfleet[$c]);                          
    $counter[$c]=count($fleet[$c]);

    $fleet[$c][0]=explode("\t",$fleet[$c][0]);
    $player[$c]=$fleet[$c][0][0];
    $fleet[$c][0]= "".$player[$c]."\t".$fleet[$c][0][1]."";


             for($u=0; $u<$counter[$c]; $u++)
            {
            $einzelfeet[$c].= "".$fleet[$c][$u]."\n";
            }

    $gesamtfleet.= "Bereitgestellt von: ".$einzelfeet[$c]."\n";

$allplayers.= "".$player[$c]."##########";

}


for($c=1; $c<$count; $c++)
{
$allplayers=str_replace("".$player[$c]."##########".$player[$c]."##########","".$player[$c]."##########",$allplayers);
}

$player=explode("##########",$allplayers);
$playercount=count($player);


$gesamtfleet=str_replace("\n\n\n","\n",$gesamtfleet);
$allyfleet=$gesamtfleet;
$allyfleet= "".$edit."\n".$gesamtfleet."";

}




for($p=0; $p<$playercount; $p++)
{
$allyfleet=str_replace($player[$p],"fake-".$p."-",$allyfleet);
}

echo "<table>";
for($p=0; $p<$playercount-1; $p++)
{
echo "<tr><td>".$player[$p]."</td><td width=\"20px\"></td><td>=</td><td width=\"20px\"><td>fake-".$p."-</td></tr>";
}
echo "</table>";
echo "<br><br><br>";




?>



<form action="save.php" method="post">
<center><b>Flotte zum schwärzen bitte hier einfügen</b></center>
<textarea name="allyfleet" cols="70" rows="25">
<?php echo $allyfleet; ?>
</textarea>
<br><br>Optional<br><br>
<input type="text" name="replace" value="Beispielwort1"> ersetzen durch <input type="text" name="replacedurch" value="Beispielwort2">
<br><br><br><br>
<input type="submit" value="Flotte schwärzen">
</form>
<br><br>
<table border="1"><tr><td width="500px">Dieses Sicherheitstool entfernt aus eurer Allyflotte alle Namen der Flottenbesitzer sowie die Koordinaten und die Flugzeiten. Sofern trotzdem in den Flottennamen ungewünschte Namen vorkommen sollten, könnt ihr diese optional ersetzen.</td></tr></table>
</center>
</body></html>