-3

不知道如何解决这个问题,但我发现这段代码可以正常工作。但是我不希望 iframe 中的重定向!基本上我想要的是将登录用户重定向到他自己的目录,只有他可以访问它,这有意义吗?

if($session->logged_in){

<echo"
iframe id=\"login-form\" frameborder=\"0\" scrolling=\"no\" width=\"100%\"     src=\"$serverroot.$session->directory/abc.php\" height=\"400\" align=\"left\"></iframe><br   /> 
";

应该足够简单(虽然不适合我...... :)

有谁愿意插手吗?!

4

1 回答 1

2

因此,只需进行标头重定向:

header("Location: {$serverroot}{$session->directory}/abc.php");
exit; // just in case you have more code beneath you don't want to execute.
于 2012-05-30T10:04:25.490 回答