我在使用php重定向页面时遇到问题。
<activity
android:name=".YourActivity"
android:label="@string/label"
android:windowSoftInputMode="adjustResize">
</activity>
我无法弄明白。如果我填写无效的密码或电子邮件,我收到错误消息。但是当它们正确时,没有任何反应。
答案 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();
}