Hi Leute ...
Ich hab da ein kleines Problem. Ich will eine txt Datei in eine Textarea laden lassen.
Aber auf jede art und weise, wie ich das ausprobiere geht das nicht. Deshalb wollt ich Euch mal um rat fragen ...
Ich bekomme immer folgende Fehlermeldungen:
Ich weiß, es gibt schon genug Threads über dieses Thema. Aber die da Beschriebenen Lösungen funktionieren bei mir nicht.
Danke schonmal für Eure Hilfe
[COLOR=blue]SESU[/COLOR]
Ich hab da ein kleines Problem. Ich will eine txt Datei in eine Textarea laden lassen.
Aber auf jede art und weise, wie ich das ausprobiere geht das nicht. Deshalb wollt ich Euch mal um rat fragen ...
PHP-Code:
<?php
$filename = "http://www.sesuonline.de/test.txt";
$fp = fopen("$filename","r+");
$inhalt = fread($fp, filesize("$filename"));
fclose($fp);
//anzeigen
print "<textarea>".$inhalt."</textarea>";
?>
Warning: fopen() [function.fopen]: Unable to access test.txt in /home/www/htdocs/sesuonline.de/admin/index.php on line 3
Warning: fopen(test.txt) [function.fopen]: failed to create stream: No such file or directory in /home/www/htdocs/sesuonline.de/admin/index.php on line 3
Warning: filesize() [function.filesize]: Stat failed for test.txt (errno=2 - No such file or directory) in /home/www/htdocs/sesuonline.de/admin/index.php on line 4
Warning: fread(): supplied argument is not a valid stream resource in /home/www/htdocs/sesuonline.de/admin/index.php on line 4
Warning: fclose(): supplied argument is not a valid stream resource in /home/www/htdocs/sesuonline.de/admin/index.php on line 5
Warning: fopen(test.txt) [function.fopen]: failed to create stream: No such file or directory in /home/www/htdocs/sesuonline.de/admin/index.php on line 3
Warning: filesize() [function.filesize]: Stat failed for test.txt (errno=2 - No such file or directory) in /home/www/htdocs/sesuonline.de/admin/index.php on line 4
Warning: fread(): supplied argument is not a valid stream resource in /home/www/htdocs/sesuonline.de/admin/index.php on line 4
Warning: fclose(): supplied argument is not a valid stream resource in /home/www/htdocs/sesuonline.de/admin/index.php on line 5
Danke schonmal für Eure Hilfe
[COLOR=blue]SESU[/COLOR]
Kommentar