I have a page that responds to javascript like this and I want to parse the 'series' array with php
$(function () {
$('#container').highcharts({
series: [{
name: 'IP',
data: [3.09,3.24,3.33,]
}, {
name: 'IPK',
data: [3.09,3.16,3.22,]
}]
});
});
what is the most effective method for doing that ?
JSON.stringify( data )->ajax->json_decode-> :-)