hier liefert er jedesmal no zurück, auch wenns n verzeichnis ist...
hier mal meinen text um alles auszugeben:
<?php
echo "<h2>Bennis ftp-manager</h2><br>";
$ftp_stream = ftp_connect("server");
$ftplogin = ftp_login($ftp_stream,"benni","[ZENSORED]");
echo "<br>Filelist:<br>";
$arr = ftp_nlist($ftp_stream,"/");
for ($i=1;$arr[$i]!="";$i++) {
echo " - $arr[$i] <br>\n";
}
ftp_quit($ftp_stream);
?>