0

我正在为我的网站进行电子邮件验证。在确认电子邮件后,我想将页面重定向到电子邮件 ID 作为帖子变量。困难是 - 我无法在重定向页面上获取电子邮件 ID

if($result2){
echo"your profile is active";
?>
<a href=" fill_profile.php?email=<?php $email?>">fill profile </a>
<?php
$sql3="DELETE FROM $tbl_name1 WHERE confirm_code = '$passkey'";
$result3=mysql_query($sql3);

}

}
?>
4

2 回答 2

2
<a href="fill_profile.php?email=<?php echo $email; ?>">fill profile </a>
于 2012-10-29T04:51:46.110 回答
1

您忘记了echo将电子邮件发送到浏览器,因此它没有出现在 url 中。任何你想发送浏览器的东西都应该是echo'ed。

if($result2){
echo"your profile is active";
?>
<a href=" fill_profile.php?email=<?php echo $email?>">fill profile </a>
<?php
$sql3="DELETE FROM $tbl_name1 WHERE confirm_code = '$passkey'";
$result3=mysql_query($sql3);

}

}
?>
于 2012-10-29T05:05:35.540 回答