PHP表单发布到远程FTP上的TXT文件

时间:2013-09-06 13:24:40

标签: php linux windows forms ftp

这是将表单数据写入同一服务器(Linux)上的txt文件的脚本。在每个帖子上它都会生成新文件。

$myfile='/home/mysite/public_html/nar/fis_'.date('D_Mi').'_'.date('dmY_Hi').'.txt';

$fh=fopen($myfile,"w"); 
    # Now UTF-8 - Add byte order mark 
    fwrite($fh, pack("CCC",0xef,0xbb,0xbf)); 
    fwrite($fh,$upisufajl); 
    fclose($fh);

但现在我需要用Windows上的用户名和密码在远程FTP服务器上写。

I have address: ftp://89.142.185.206/new_files/ and username and password.

我需要做什么?例子将不胜感激。

谢谢你们

1 个答案:

答案 0 :(得分:1)

由于我假设您已成功将内容写入文本文件,请使用以下脚本登录FTP服务器以上载文本文件。

<?php
     $ftp_server="";
     $ftp_user_name="";
     $ftp_user_pass="";
     $file = "";//your textfile
     $remote_file = "remfile.txt";


     $conn_id = ftp_connect($ftp_server);
     $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
     if (ftp_put($conn_id, $remote_file, $file, FTP_ASCII)) {
        echo "successfully uploaded $file\n";
        exit;
     } else {
        echo "There was a problem while uploading $file\n";
        exit;
        }
     ftp_close($conn_id);