0

我正在寻求一些 HTML 功能代码的帮助。

我想从网站上的两个文本框(txtName,txtBody)中获取信息,然后使用 PHP 将这些文本框的内容保存到 ftp 服务器上的文件中。

有人可以指出我正确的方向吗?

谢谢

4

2 回答 2

2

正如 dagon 所说,文件放置内容可用于完成此操作,下面是一个简单的示例。

<?php
    $file = 'people.txt';
    // Open the file to get existing content
    $current = file_get_contents($file);
    //Assign txtName to variable.
    $name = $_POST['txtName'];
    // Append a new person to the file
    $current .= $name;
    // Write the contents back to the file
    file_put_contents($file, $current);
?>
于 2012-05-07T21:19:15.057 回答
1

如果你处理ftp那么你必须使用http://www.php.net/manual/en/function.ftp-fput.php

$file = $_POST['txtName'];
file_put_contents($file, $_POST['txtBody']);
$fp = fopen($file, 'r');
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
if (ftp_fput($conn_id, $file, $fp, FTP_ASCII)) {
    echo "Successfully uploaded $file\n";
} else {
    echo "There was a problem while uploading $file\n";
}
ftp_close($conn_id);
fclose($fp);
于 2012-05-07T21:27:40.947 回答