我已經創建了一個動態JSON文件。如何使用PHP顯示JSON數據
我的代碼是:
$res = mysql_query("select * from tbl_product where category='saree'");
while($rowpro=mysql_fetch_array($respro)) {
$records []= $rowpro;
$json_string=file_put_contents("product_file.json",json_encode($records));
}
我怎樣才能從JSON文件中的數據?使用while循環或類似的東西?