我正在为我的网站制作一个即将推出的页面,其中包括名称和电子邮件的文本框,我正在使用 asp,但现在我想要 php 或 html5 编码,因为我完成了我的项目。
我想将数据插入到 csv 文件中,并使用 php 在用户电子邮件地址上发送自动生成的邮件,是否有可能,谁能帮助我解决这个问题。有两个文本框名称和电子邮件。你能给我代码,因为我是 php 新手吗?
我在谷歌上找到的代码:
if($_POST['formSubmit'] == "Submit")
{
$errorMessage = "";
if(empty($_POST['name']))
{
$errorMessage .= "<li>without name how can we send you invitation</li>";
}
if(empty($_POST['email']))
{
$errorMessage .= "<li>i think email id is required</li>";
}
$name = $_POST['name'];
$email = $_POST['email'];
if(empty($errorMessage))
{
$fs = fopen("mydata.csv","a");
fwrite($fs,$name . ", " . $email . "\n");
fclose($fs);
header("Location: werememberyou.html");
exit;