这是将表单数据写入同一服务器(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.
我需要做什么?示例将不胜感激。
多谢你们