我想在链接中添加一个可变的电子邮件地址(因此,当有人点击链接时,电子邮件地址会动态填充),这会重定向PHP。电子邮件地址根据访问链接的人而不同。所以我想知道,我怎样才能在普通的URL地址中添加变量Email,然后介入并添加到PHP重定向?
这是代码,但不起作用......
<?PHP
$subid=$_GET[subid];
$email=$_GET[email];
?>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://xentrk.com/?a=41&c=308&s1={{ email|default:'null' }}<?PHP echo $subid;?>" />
</head>
<body>
答案 0 :(得分:1)
您在网址中使用echo $subid
:
当然这应该是$email
?
这是代码:
<?php
$subid=$_GET['subid'];
$email=$_GET['email'];
?>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://xentrk.com/?a=41&c=308&s1={{ email|default:'null' }}<?php echo $email;?>" />
</head>
<body>