我无法弄清楚如何执行以下操作:我像json一样检索mysql请求,我得到了这个:
[
{"pid":"1","comment":"La premiere consultation est toujours bizarre..."},
{"pid":"1","comment":"La seconde... c'est jamais mieux !"}
]
现在我正在尝试循环生成我的html模板。我绝对不是一个PHP专家,但学习:)
感谢您的帮助!
答案 0 :(得分:1)
Thank you Mark, this worked out fine !
$arr = json_decode($json, true);
foreach($arr as $item) { //foreach element in $arr
echo 'Comment: ' . $item['comment'];
}