[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
contrib
/
[
Home
]
File: ftp-mit-perl.pl
use Net::FTP; print "Content-Type: text/html\n\n"; $ftp = Net::FTP->new("localhost"); # Unser Host die "Konnte keine Verbindung aufbauen $!" unless $ftp; $ftp->login("newuser", "wampp"); # Hier Benutzername und Password eingeben $ftp->get("index.php"); $ftp->quit;