Nieuw lid |
|
$handle = fopen ("http://mijndomein.nl/map/bestand.txt", "r");
while (!feof ($handle)) {
$txt = fgets($handle, 4096);
}
fclose ($handle);
echo $txt;
$handle = fopen ("http://mijndomein.nl/map/bestand.txt", "r"); while (!feof ($handle)) { $txt = fgets($handle, 4096); }
|