phpbar.de logo

Mailinglisten-Archive

[php] ftp_upload

[php] ftp_upload

Clemens Gutweiler php_(at)_gutweiler.net
Wed, 20 Sep 2000 21:43:40 +0200


> $ftp_adress='ftp.host-yyyy.de/vereine/';
> $ftp_user="ftp://xxxxxxxx";
> $ftp_user.="_(at)_";
> $ftp_user.=$ftp_adress;
> $ftp_password="montreal";
> $ftp_conn = ftp_connect($ftp_adress);
> if (!ftp_login($ftp_conn, $ftp_password, $ftp_user)) {
> die("Kann mich nicht einloggen
Hallo,

du brauchst keine Strings zusammenzubasteln, also "ftp://user:pass_(at)_host.de"
ist nicht richtig, machs einfach so:

$f = ftp_connect("ftp.host.de");
ftp_login($f, "user", "pass");
ftp_chdir($f, "/home/ich/da/wo");
...

mfg clemens
--
::      Web M_(at)_king         ::   http://www.webmaking.de   ::
::   ICQ UIN #36706371     ::    clemens_(at)_gutweiler.net    ::
:: fon 0 65 33 / 95 94 41  ::   mobil 0 170 / 18 48 747   ::

>
> Danke im voraus!
>
> Gruß
>
> - Normand -
>
>
> --
> ** Durchgehend geöffnet: http://www.php-center.de **
> Die PHP-Liste: mailto:php_(at)_php-center.de
> http://infosoc.uni-koeln.de/mailman/listinfo/php
>



php::bar PHP Wiki   -   Listenarchive