2016-09-29 8 views
-3

なぜコードが機能していないのか分かりません。jsonにエンコードする必要がありますか? 私はそのが動作して表示エラーメッセージではありませんAndroidのスタジオでアプリから、このPHPコードのリンクを呼び出すとき、それはこのコードを表示:json parse error on line 1:< html >< body >

<html> <body> < script type = "text/javascript" 
src = "/aes.js" > < /script><script>function toNumbers(d){var e=[];d.replace(/ (..)/g, 
function(d) { 
    e.push(parseInt(d, 16)) 
}); 
return e 
} 
function toHex() { 
for (var d = [], d = 1 == arguments.length && arguments[0].constructor == Array ? arguments[0] : arguments, e = "", f = 0; f < d.length; f++) e += (16 > d[f] ? "0" : "") + d[f].toString(16); 
return e.toLowerCase() 
} 
var a = toNumbers("f655ba9d09a112d4968c63579db590b4"), 
b = toNumbers("98344c2eee86c3994890592585b49f80"), 
c = toNumbers("fafd97787619720460a70e34d00aedb4"); 
document.cookie = "__test=" + toHex(slowAES.decrypt(c, 2, a, b)) + "; expires=Thu, 31-Dec-37 23:55:55 GMT; path=/"; 
location.href = "http://gmarket.byethost5.com/json_getS.php?i=2"; 

もjsonlintウェブサイトの表示で同じ上記のテストPHPのURLと、このエラーを返します:ライン1上の

解析エラー:< HTML> <体> < ^期待 'STRING' 'NUMBER'、 'NULL'、 'TRUE'、 'FALSE'、 '{'、 '[' 、 '未定義'になった)

このPHPのリンク:私が使用http://gmarket.byethost5.com/json_getS.php

このPHPコード:

<?php 
$host= "sql201.byethost5.com"; 
$user = "xxxxxxx"; 
$pass = "xxxxxxx"; 
$db = "xxxxxxx"; 

$sql="select * from customer"; 

$con = mysqli_connect($host,$user,$pass,$db); 
$result= mysqli_query($con,$sql); 

$response = array(); 

while ($row = mysqli_fetch_array($result)) 
{ 

array_push($response,array("name"=>$row[0],"phone"=>$row[1])); 
} 
echo json_encode(array("customers"=>$response)); 

mysqli_close($con); 
?> 
+0

URLはjsonを返します。 Androidのコードに問題があるように見える – Jens

+0

'$ response = array(); while($ row = mysqli_fetch_array($ result)) { $ response ['customers'] [] =配列( "name" => $ row [0]、 "phone" => $ row [1] ); } echo json_encode($ response); ' –

答えて

0

あなたのJSONが正しい、問題は、コンテンツがJSONであるブラウザを言っていない、あなたの帰国HTMLです。

使用

header('Content-Type: application/json'); 
echo json_encode($response); 
+0

私はアプリでこれを使用していましたが、 – Nawaf

0

私は同じコードで何の問題もなく、別のウェブホスティングドメイン(000webhost)とその作品を使用し、私は(byethost)からでないコードから問題を考えます。

関連する問題