I echo JSON data in PHP like this.
echo json_encode($row,JSON_PRETTY_PRINT);
Then I use ajax in jquery and do for loop to loop the json data.
for(var i=0; i<data.length; i++) {
var img = data[i].url;
}
Ok, now here my problem. I have a get_thumb(parem1, param2) php function and I want to use this function to get the thumbnail image. How can I select the json url in php? Like this
Edited
get_thumb($row[i]['url'], param2);
get_thumbis in PHP or Javascript? I'm so confused when looking at$row[i].url:( – Trung-Hieu Le Jan 21 at 19:10param2available in json data on Javascript side. I think the first parameter$row[i].urlmaps todata[i].url]. – shiplu.mokadd.im Jan 21 at 19:12param2is different from each element of$rowor the same? – Trung-Hieu Le Jan 21 at 19:17