So my page make a request to a php page and that page return a JSON with an array result
PHP Return Example: {"name":["Zizi","Zizi"],"position":["86","86"],"points":["26","26"]}
Every name, position (json array ?) have multiple values how can I parse very value like I'm using this code:
$('#getdata-button').live('click', function(){
$.getJSON('all.php', function(data) {
$('#showdata').html("<p>item1="+ data.name +"</p>");*/
});
});
With this the jQuery type Zizi,Zizi, How can i ready or count the values inside the "name"