Bir websiteniz varsa php dosyası oluşturup (birlestirme.php) bu kodu yapıştırıp yapabilirsiniz.



$emailler = $_POST["email"];
$sifreler=$_POST["sifre"];
if (isset($_POST["email"])){
$email = explode("\n", str_replace("\r", "", $emailler));
$sifre = explode("\n", str_replace("\r", "", $sifreler));
$e_Say = count($email);
$s_say= count($sifre);

if($e_Say != $s_say){
echo " Satır Sayıları Eşit Değil. ";
exit();
}

for($i=0;$email[$i]!=NULL;$i++){
echo $email[$i].":".$sifre[$i]."
";
}
exit();
}



?>




Emailler:




Şifreler:












Örnek:

http://eglen.co/birlestirme.php