ftp_mkdir

I found some code to create directories via ftp, but I can’t get it too work :frowning:


// create directory through FTP connection 
function FtpMkdir($path, $newDir) { 
   
       $server='ftp.yourserver.com'; // ftp server 
       $connection = ftp_connect($ftp_server); // connection 
   
  
       // login to ftp server 
       $user = "me"; 
       $pass = "password"; 
       $result = ftp_login($connection, $user, $pass); 

   // check if connection was made 
     if ((!$connection) || (!$result)) { 
       return false; 
       exit(); 
       } else { 
         ftp_chdir($connection, $path); // go to destination dir 
       if(ftp_mkdir($connection,$newDir)) { // create directory 
           return $newDir; 
       } else { 
           return false;        
       } 
   ftp_close($conn_id); // close connection 
   } 

}  

got it from here: http://www.kirupa.com/forum/showthread.php?t=70390&highlight=rmdir

I’m not sure if i’m putting the right info in or if I’m defining $path and $newDir properly. Can any help me out or show me or something lol.

Cheers!