我想向我的客户发送某些电子邮件,并在这些电子邮件中提供了一个链接(例如激活电子邮件以激活您的帐户),当用户点击该链接时,他们会被定向到我网站上的页面,该页面有一个电子邮件输入框。
我希望当他们点击该链接并重定向到我的网站时,输入字段应自动填写用户点击该链接的电子邮件。(注意用户无需在我的网站上登录)
任何方式我都可以这样做,我使用PHP
谢谢
答案 0 :(得分:1)
你可以传递URL中的一些数据,例如Correspodant ID,然后在数据库中查找要自动填充的ID ......
或者,您可以在URL中合并电子邮件ID并将其放入电子邮件中,然后当用户HIT将该对应的电子邮件ID作为URL的一部分作为您可以阅读并放入文本框的查询字符串时。
let's use your example
http://www.example.com/example.php?id=USEREMAIL
you could access the value of the variable id in the $_GET array like so
echo $_GET['USEREMAIL'];
this would output "UserEmail". It is common to pull these into a local variable such as
$myid = $_GET['USEREMAIL'];
this would be the some syntax for any var in your url, take this example
http://www.example.com/example.php?AutoFillEmail=developerjigar@gmail.com&start=40§ion=mysupercat
$myid = $_GET['AutoFillEmail'];
$start = $_GET['start'];
$section = $_GET['section'];
希望你理解