データベースからデータを抽出してJsonデータに変換しようとしています。データベースからデータを抽出してJsonデータに変換できません
商品のID、画像、名前、価格の表があります。私はこれらのデータをJsonに変換し、それらを私のウェブサイトに抽出したいと思います。
<?php
//config is the file where i used to connect php to db
include_once('config.php');
// images is my table name
$sql= "SELECT * FROM `images` ";
$res= mysql_query($sql);
$result = array();
while ($row = mysql_fetch_array($res))
//image is stored as longbob, name as varchar and price as int
array_push($result, array('id'=> $row[0],
'image' = > $row[1],
'name'=> $row[2],
'price'=> $row[3]
))
echo json_encode(array());
?>
問題点は何ですか? echo json_encode($ result)のように$ resultをjson_encodeの中に入れます。 –