try @ftp_mkdir($conn_id, $uploadtag);
On Tue, 23 Jan 2001, Simon Chambers wrote:

> Hi,
>
> I have developed a small php program which creates a directory on a remote
> ftp site, which works fine. The problem is that when the directory is creted
> it displays the message:
>
> Warning: ftp_mkdir: MKD command successful.
>
> How can i get rid of this warning message?
>
> Thanks
>
> Simon
>
> p.s. i dont know if it helps but the related code is
>
> $login_result = ftp_login($conn_id, "User", "Password");
>
> // check connection
> if ((!$conn_id) || (!$login_result)) {
>         echo "Ftp connection has failed!";
>         echo "Attempted to connect ";
>         die;
>     } else {
>        # echo "Connected  for user ";
>     }
>
> $temp = ftp_mkdir($conn_id, $uploadtag);
>
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to