チュートリアルのような YouTube 動画のリストを作成したいと考えています。しかし、すべてのビデオのすべてのページを作成したくはありません。多くの Web サイトがクエリ文字列を使用してこれを行っているのを目にしますが、その使用方法がわかりません。誰かが例を示してくれます。
===index.php===
<html>
<body
<a href="tutorial.php?id=10">First tutorial</a>
<a href="tutorial.php?id=11">Second tutorial</a>
<a href="tutorial.php?id=12">Third tutorial</a>
</body
</html>
===tutorial.php===
<?php
$id = $_GET['1'];
**//So how do I display a page and video here?
//How would it determine where is id=10, id=11, id=12.....**
?>
ありがとう