这是我在Webview上的问题。
我在我的Android应用程序用户仪表板中创建了一个Webview活动。
现在我需要在php
页面上输出登录的会员用户名。
这是我的代码 也许任何人都可以帮助并找到我的错误 我使用的是Android Studio
Android活动代码:
public class Activity extends ActionBarActivity {
private WebView myWebView;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cpa);
myWebView = (WebView)findViewById(R.id.webView);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
myWebView.loadUrl("http://example.org/page.php?username="+App.getInstance().getUsername());
myWebView.setWebViewClient(new WebViewClient());
这是我的php
页面:
<?php
include_once 'connect_database.php';
$username = $_POST['username'];
?>
<html>
<body>
<?php echo $username ?>
</body>