1

我正在尝试为我的网站制作某种联系表格,并且我正在寻找一个 php 代码来将用户在联系表格中输入的内容保存在我的主机服务器上的 txt 文件中。

我对联系表格进行了一些研究,似乎通常的方法是发送电子邮件,但我尝试的每个代码都不起作用,它总是抛出 SMTP Connect() failed 异常。

4

1 回答 1

0
<?php
$email = isset($_POST['email']) ? $_POST['email'] : '';
$message = isset($_POST['message']) ? $_POST['message'] : '';

if ($email && $message) {
    $str = $email . '-' . $message . "<br/>";
    $file = fopen("test.txt","w");
    echo fwrite($file, $str);
    fclose($file);
}
?>
于 2013-08-23T10:17:30.200 回答