为什么不会重定向此页面?

时间:2015-10-08 06:26:38

标签: php

我在使用php重定向页面时遇到问题。

<activity
         android:name=".YourActivity"
         android:label="@string/label"
         android:windowSoftInputMode="adjustResize">
        </activity>

我无法弄明白。如果我填写无效的密码或电子邮件,我收到错误消息。但是当它们正确时,没有任何反应。

2 个答案:

答案 0 :(得分:0)

if (!empty($username)) {
              header('location:http://www.xxxxxxxxxxxxxx.be/login/dashboard.php');
                    exit();}

$username可能是空的。

答案 1 :(得分:0)

if (!empty($username)) {
     header('location:http://www.yoursite.be/login/dashboard.php?error=error in login please try agine');
     exit();
}