为了账号安全,请及时绑定邮箱和手机立即绑定

老师,这节课如果返回数据用PHP该如何写?

老师,我不会JSP,用PHP的话该怎么写呢?能放一下源码吗?

正在回答

1 回答

<?php
//index.php
if ($_COOKIE['user'] || $_COOKIE['pass']) {
	echo "welocome index";
} else {
	header("Location:test.php");
}
<?php
//test.php
if(isset($_POST['user']) && isset($_POST['pass'])){
	setcookie("user", $_POST['user'], time()+3600);
	setcookie("pass", $_POST['pass'], time()+3600);
}
?>
<form action="" method="post">
<input type="text" name="user" />
<input type="password" name="pass" />
<input type="submit" value="submit">
</form>
	private Handler handler = new Handler(){
		public void handleMessage(android.os.Message msg) {
			//设置cookie;
			CookieSyncManager.createInstance(MainActivity.this);
			CookieManager cookieManager = CookieManager.getInstance();
			cookieManager.setAcceptCookie(true);
			Cookie cookie = (Cookie) msg.obj;
			String str = cookie.getName()+"="+cookie.getValue();
			cookieManager.setCookie("192.168.0.105", str);
			CookieSyncManager.getInstance().sync();
			wv.loadUrl("http://192.168.0.105/index.php");
		};
	};


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android中的WebView实战详解
  • 参与学习       32827    人
  • 解答问题       51    个

在App中玩转Web页面,介绍介绍WebView是什么、怎么使用

进入课程

老师,这节课如果返回数据用PHP该如何写?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信