[TLDR] Big Newbie需要制作一个文件数组,通过以下代码中的用户输入保存数据,这是可见的吗?[TLDR]
如果标题是用词不当抱歉,但我是一个非常非常绿色的新手,试图做一个没有处理FTP或HTML或PHP经验的编码项目。
如何制作文件的“数组”,在网站主页中输入用户数据(名字,姓氏,电子邮件,评论)时,会生成数组的每个元素?数组中的这些文件将保存用户的姓名,电子邮件和注释,并且可以删除。
我正在使用FileZilla Client连接到我的FTP服务器greenhousebra.comli.com/index.php。
在该页面上是论坛输入:
名字[文字字段] 姓氏[文本字段]
电子邮件[文本字段]
消息[文本框] [提交按钮]
当输入文本字段并且提交被点击时,它应该向输入的电子邮件地址发送一封电子邮件,我希望它像票证一样运行,到目前为止一直有效。但后来我想要另一个选项,可以转到另一个页面,看看其他人输入数据的数组。
这个代码来自另一个stackexchange帖子,因为我不知道任何.php或HTML,并在下面发布,它保存在我的index.php文件中greenhousebra.comli.com
index.php文件中的HTML代码:
<!DOCTYPE html>
<head>
<title>Form submission</title>
</head>
<body>
<form action="mail_handler.php" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_name"><br>
Email: <input type="text" name="email"><br>
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>
mail_handler.php文件
`
<?php
if(isset($_POST['submit'])){
$to = "email@example.com"; // this is your Email address
$from = $_POST['email']; // this is the sender's Email address
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$subject = "Form submission";
$subject2 = "Copy of your form submission";
$message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['message'];
$message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];
$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
// You can also use header('Location: thank_you.php'); to redirect to another page.
// You cannot use header and echo together. It's one or the other.
}
?>