<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample01</title>
</head>
<body>
<?php
$file = file_get_contents('feed.json');
$json = json_decode($file);
foreach($json->items as $item):
?>
・<a href="<?php echo $item->url; ?>"><?php echo $item->title; ?></a><br>
<?php endforeach; ?>
</body>
</html>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample01</title>
</head>
<body>
<?php
// JSONにするために、配列でデータを作成する。
$json_sample = [
"title"=>"JSONサンプル",
"items"=>[
"りんご",
"みかん"
]
];
$json = json_encode($json_sample, JSON_UNESCAPED_UNICODE);
echo $json;
file_put_contents('json_sample.json', $json);
?>
</body>
</html>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<form action="submit.php" method="get">
<label for="my_name">お名前:</label>
<input type="text" id="my_name" name="my_name" />
<input type="submit" value="送信する" />
</form>
</body>
</html>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sample20</title>
</head>
<body>
<?php if(!empty($_REQUEST['my_name'])):?>
<p>お名前: <?php echo htmlspecialchars($_REQUEST['my_name']);?></p>
<?php endif; ?>
</body>
</html>