Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
2  
get_thumb is in PHP or Javascript? I'm so confused when looking at $row[i].url :( – Trung-Hieu Le Jan 21 at 19:10
@Trung-HieuLe get_thumb is php function – vzhen Jan 21 at 19:11
Is this param2 available in json data on Javascript side. I think the first parameter $row[i].url maps to data[i].url]. – shiplu.mokadd.im Jan 21 at 19:12
param2 is different from each element of $row or the same? – Trung-Hieu Le Jan 21 at 19:17
param2 is the size of the thumbnail. It is an option like which size of thumbnail I want to select. – vzhen Jan 21 at 19:20
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.