I have a script that outputs some json. My json looks like: I am trying to get the twitter trends and displaying to my website.
Array
(
    [0] => Array
        (
            [trends] => Array
                (
                    [0] => Array
                        (
                            [name] => #Allah_In_Quran
                            [url] => http://twitter.com/search?q=%23Allah_In_Quran
                            [promoted_content] => 
                            [query] => %23Allah_In_Quran
                            [tweet_volume] => 216174
                        )
                    [1] => Array
                        (
                            [name] => Last Prophet Saint Rampal Ji
                            [url] => http://twitter.com/search?q=%22Last+Prophet+Saint+Rampal+Ji%22
                            [promoted_content] => 
                            [query] => %22Last+Prophet+Saint+Rampal+Ji%22
                            [tweet_volume] => 161376
                        )
                    [2] => Array
                        (
                            [name] => BBB3 SHOOT WRAP UP
                            [url] => http://twitter.com/search?q=%22BBB3+SHOOT+WRAP+UP%22
                            [promoted_content] => 
                            [query] => %22BBB3+SHOOT+WRAP+UP%22
                            [tweet_volume] => 224067
                        )
                    [3] => Array
                        (
                            [name] => PROUD OF LOUIS
                            [url] => http://twitter.com/search?q=%22PROUD+OF+LOUIS%22
                            [promoted_content] => 
                            [query] => %22PROUD+OF+LOUIS%22
                            [tweet_volume] => 336126
                        )
                    [4] => Array
                        (
                            [name] => #MaiBhiTiranga
                            [url] => http://twitter.com/search?q=%23MaiBhiTiranga
                            [promoted_content] => 
                            [query] => %23MaiBhiTiranga
                            [tweet_volume] => 28770
                        )
                    [5] => Array
                        (
                            [name] => #BURARS
                            [url] => http://twitter.com/search?q=%23BURARS
                            [promoted_content] => 
                            [query] => %23BURARS
                            [tweet_volume] => 36755
                        )
                    [6] => Array
                        (
                            [name] => LOUIS TOMLINSON
                            [url] => http://twitter.com/search?q=%22LOUIS+TOMLINSON%22
                            [promoted_content] => 
                            [query] => %22LOUIS+TOMLINSON%22
                            [tweet_volume] => 342661
                        )
                    [7] => Array
                        (
                            [name] => Rudrakaal Tomorrow
                            [url] => http://twitter.com/search?q=%22Rudrakaal+Tomorrow%22
                            [promoted_content] => 
                            [query] => %22Rudrakaal+Tomorrow%22
                            [tweet_volume] => 
                        )
                    [8] => Array
                        (
                            [name] => #TeamIndia
                            [url] => http://twitter.com/search?q=%23TeamIndia
                            [promoted_content] => 
                            [query] => %23TeamIndia
                            [tweet_volume] => 60971
                        )
                    [9] => Array
                        (
                            [name] => #SSMBPrideOfTollywood
                            [url] => http://twitter.com/search?q=%23SSMBPrideOfTollywood
                            [promoted_content] => 
                            [query] => %23SSMBPrideOfTollywood
                            [tweet_volume] => 72219
                        )
                    [10] => Array
                        (
                            [name] => Xhaka
                            [url] => http://twitter.com/search?q=Xhaka
                            [promoted_content] => 
                            [query] => Xhaka
                            [tweet_volume] => 45763
                        )
                    
            [as_of] => 2021-03-06T15:20:54Z
            [created_at] => 2021-03-06T03:44:12Z
            [locations] => Array
                (
                    [0] => Array
                        (
                            [name] => India
                            [woeid] => 23424848
                        )
                )
        )
)
I have using the below code getting the output
$getfield = '?id=23424848';
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
$string = json_decode($twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest(),$assoc = TRUE);
echo "<pre>";
print_r($string);
echo "</pre>";
I have tried with foreach loop, but I can't able to fetch the data from jason. I want to convert this jason data to table format.
 
    