Örneğin Elimizde xx dosyası var
<?php
$myFile = "adres1.txt";
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
echo $theData;
fclose($fh);
?> Defa İndirildi
Diyelim ki 2 tane adres var
<?php
$myFile = "adres2.txt";
$fh = fopen($myFile, 'r');
$theData = fread($fh...