i have an array inside another array like this in php
Array
(
[common_search] => Array
(
[BusinessName] => Sun Shine Vision
[Address] => Amulia St Madhava Pharmacy Jn
[Phone] =>
)
[cache_table] => Array
(
[Details] => Speedtrax,Ample's Bldg Off Banerji Rd., Amulia St,
)
)
And i have to iterate these as seperate arrays in my result page using Jquery ,as i want to get these arrays separately to display in different divs to set as html ,How can i get the data from two arrays (common_search , cache_table) separately . And in my html i want to set data like $("#common_searchdiv").html(common_search) and $("#cache_tablediv").html(cache_table) . Thanks in advance