<?php

// your code goes here
$datas = Array(
    0 => Array(
            'trends' => Array (
                    0 => Array
                        (
                            'name' => '#Allah_In_Quran',
                            'url' => 'http://t...content-available-to-author-only...r.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://t...content-available-to-author-only...r.com/search?q=%22Last+Prophet+Saint+Rampal+Ji%22',
                            'promoted_content' => '',
                            'query' => '%22Last+Prophet+Saint+Rampal+Ji%22',
                            'tweet_volume' => 161376
                        )
			),
                    
            as_of => '2021-03-06T15:20:54Z',
            created_at => '2021-03-06T03:44:12Z',
            locations => Array
                (
                    0 => Array
                        (
                            name => 'India',
                            woeid => 23424848
                        )

                )

        )

);

//echo json_encode($datas);

echo "<pre><table>";
echo "<tr><th>name</th><th>url</th></tr>";
foreach ($datas as $data) {
	$trends = $data['trends'];
	foreach ($trends as $tweet) {
		echo "<tr>";
		echo "<td>".$tweet['name']."</td>";
		echo "<td>".$tweet['url']."</td>";
		echo "</tr>";
	}
}
echo "</table></pre>";