Need Idea foreach |
Hi CI Team,
How to foreach data like below, Database : Code: ID | viewed | code How to get output like below, Code: var gdpData = {"US": 25, Thanks
where your getting data from?
if this data in database you can use group by and sum sql functions to get viewed | code 25 | US 85 | SG 55 | MY or if discribe it in php array: PHP Code: array( your gdpData is in json format. you will need to map to PHP Code: array( {"US":25,"SG":85,"MY":55} Also to parse json you can use json_decode function in PHP (04-25-2018, 11:05 PM)neuron Wrote: where your getting data from? I try use this code, PHP Code: $rv = array(); The result is OK, but how to sum the viewed ? Thanks you neuron...
|
Welcome Guest, Not a member yet? Register Sign In |