<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Access Counter</title>
</head>
<body>
<?php
$data = array();
$google_xml = simplexml_load_file('https://trends.google.co.jp/trends/hottrends/atom/feed?pn=p4');
foreach($google_xml->channel as $item){
$x = array();
foreach($item->item as $post){
$x['title'] = (string)$post->title;
$x['description'] = (string)$post->description;
$data[] = $x;
}
}
foreach ($data as $value) {
?>
<h1><?php print $value['title'];?></h1>
<p><?php print $value['description'];?></p>
<hr>
<?php
}
?>
</body>
</html>