php中是否有任何方法可以创建链接,以便当用户单击链接时,他们会调用一个函数,然后在调用该函数后立即将用户重定向到另一个网页。
$acceptEmailInvite; //append this url to the url in the link
if($app[UID]) {
//how do I have a link connect to two redirects?
$acceptEmailInvite = '/idx.php/store/accept/'.{$org['id']}; //link to this first
$acceptEmailInvite = 'getLink?org='.$D['bta']; //then link to this
}
<a href="<?php echo $C['tdURL'].$acceptEmailInvite; ?>">Accept the invitation for: <b><?php echo $D['referer']; ?></b></a>
编辑:我的意思是这两件事只有在点击链接时才会发生。因此,除非单击链接,否则不应重定向用户。对困惑感到抱歉。