在php邮件中使用post方法

时间:2015-11-30 19:51:46

标签: php html forms email

我有一个表单,它从客户端获取电子邮件ID,并在提交表单时执行php文件。

php脚本会将邮件发送到获取的电子邮件ID以及从数据库中删除电子邮件ID的链接。

我在html表单中使用'post'方法来获取电子邮件,但我也不知道如何在电子邮件中使用post方法。

我的html表单代码:

<form method="post" action="send.php">
     <input type="text" name="e1">
     <input type="submit" value="send">
</form>

send.php文件:

<?php
      $to = $_POST['e1'];
      $message = 
        ' /* added a html mail along with remove email link */

          <a href="mydomain.com/remove.php?data=".$to.>Click to remove</a>

          /* Here in the hyperlink to the remove.php ,I have to use post method instead of using '?data='....' get method */
?>

在remove.php里面我有sql查询来删除$ to email。任何人都可以在URL中使用输入数据作为'?data =',我必须使用post方法

我怎样才能以简单/安全的方式做到这一点?

0 个答案:

没有答案