是否可以使用PHP从HTML页面检索电子邮件地址。我有一个页面,我有各种问题(调查页面)。此调查页面可通过我在其电子邮件地址发送给用户的链接进行访问。我希望当用户在登录他的电子邮件地址并填写调查表后点击该链接时,该电子邮件地址应该被推送到phpmyadmin数据库?
答案 0 :(得分:1)
调查页面可通过我发送给用户的链接进行访问 电子邮件地址。
为什么不发送诸如在链接中附加电子邮件之类的内容?
<a href="surverypage.php?email=toemailaddress@to.com">Click here to fill the survey</a>
在调查表单中,访问get email
值并将其插入数据库。您可以通过
$user_email = $_GET['email'];
SIMPLE!
编辑:
survey.php(用户在电子邮件中点击此页面)
<?php
$user_email = $_GET['email'];
// get all survey answers with POST and insert them with SQL query
?>
请确保您发送到用户电子邮件地址的链接必须包含动态网址链接,
<a href="surverypage.php?email=toemailaddress@to.com">Click here to fill the survey</a>
toemailaddress@to.com
此部分动态变化。只需将其替换为收件人电子邮件地址。