Androidでサーバー上のphpファイルを読み込もうとしています。
私は外国人なので、ショット英語でごめんなさい..
<html>
<head>
<title>aaa</title>
<meta http-equiv="Content-Type" content="text" charset="utf-8">
</head>
<body>
<?php
$link_id = mysql_connect('localhost','root','');
mysql_select_db('aaaa',$link_id);
$res = mysql_query("insert into ppt_member value ('$id','$password','$name','$email','$address','$sex','$age')",$link_id);
?>
これは私のphpコードです。
アプリケーションを実行すると、
07-22 01:41:32.505: W/Response(1195): <html>
07-22 01:41:32.505: W/Response(1195): <head>
07-22 01:41:32.505: W/Response(1195): <title>aaa</title>
07-22 01:41:32.505: W/Response(1195): <meta http-equiv="Content-Type" content="text" charset="utf-8">
07-22 01:41:32.505: W/Response(1195): </head>
07-22 01:41:32.505: W/Response(1195): <body>
07-22 01:41:32.505: W/Response(1195):
htmlコードまでは読めますが、phpコードは読めません。
私は何をすべきか?