home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 February (DVD)
/
PCWorld_2008-02_DVD.iso
/
v cisle
/
PHP
/
PHP.exe
/
xampp-win32-1.6.5-installer.exe
/
htdocs
/
contrib
/
ftp-mit-perl.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-12-20
|
268 b
|
8 lines
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;