반응형
$ftp_server='kkk.net';//serverip
$conn_id = @ftp_connect($ftp_server);
// login with username and password
$user="kkk";
$passwd="aaa";
$login_result = @ftp_login($conn_id, $user, $passwd);
//directorylike /www.velibaba.com/images
@ftp_chdir($conn_id, "public_html/report_files");
// upload the file
$upload = @ftp_put($conn_id, $filename, $file, FTP_BINARY);
// close the FTP stream
@ftp_close($conn_id);
$conn_id = @ftp_connect($ftp_server);
// login with username and password
$user="kkk";
$passwd="aaa";
$login_result = @ftp_login($conn_id, $user, $passwd);
//directorylike /www.velibaba.com/images
@ftp_chdir($conn_id, "public_html/report_files");
// upload the file
$upload = @ftp_put($conn_id, $filename, $file, FTP_BINARY);
// close the FTP stream
@ftp_close($conn_id);
반응형
'웹프로그램' 카테고리의 다른 글
PHP 파일 생성 (0) | 2008.10.18 |
---|---|
PHP 파일 다운로드 (0) | 2008.10.18 |
PHP POST 전송된 첨부파일 확장자 확인 하기 (0) | 2008.10.18 |
PHP W3C P3P 규약설정 (0) | 2008.10.18 |
PHP 간단한... ip 접근 금지 체크 (0) | 2008.10.18 |
PHP 플래시 연동 (0) | 2008.10.18 |
PHP registart 값 off 후 파일 업로드 (0) | 2008.10.18 |
PHP registart 값 off 후 세션 에러 (0) | 2008.10.18 |