客製化YouTube查詢

( 000YTsort.php 原始碼)

<html>
<head>
<meta charset="utf-8" />
<title>YouTube查詢</title>
</head>
<body bgcolor="#F9E6A2">
<h2><strong>客製化YouTube查詢</strong></h2>
<h3>005 王大明 設計</h3>
<form method="POST" action="">
   關鍵字:<input type="text" name="text" size="15" >
   <input type="submit" name="send" value="確認送出">
</form>
<form method="POST" action="">
  <font color="#FF0000"><b>天文類:</b></font><br>
   <input type="radio" value="宇宙" name="sort" checked>宇宙
   <input type="radio" value="銀河系" name="sort" >銀河系
   <input type="radio" value="太陽系" name="sort" >太陽系
   <input type="radio" value="地球" name="sort" >地球
   <input type="radio" value="月球" name="sort" >月球
   <input type="radio" value="火星" name="sort" >火星
   <input type="radio" value="木星" name="sort" >木星
   <input type="radio" value="黑洞" name="sort" >黑洞
   <input type="radio" value="蟲洞" name="sort" >蟲洞<br>
   <input type="radio" value="白矮星" name="sort" >白矮星
   <input type="radio" value="中子星" name="sort" >中子星
   <input type="radio" value="超新星" name="sort" >超新星
   <br>
   <input type="submit" name="send2" value="確認送出">
</form>
<form method="POST" action="">
   <font color="#FF0000"><b>資訊類:</b></font><br>
   <input type="radio" value="電腦" name="sort2" checked>電腦
   <input type="radio" value="電腦硬體" name="sort2" >電腦硬體
   <input type="radio" value="電腦軟體" name="sort2" >電腦軟體
   <input type="radio" value="網際網路" name="sort2" >網際網路
   <input type="radio" value="人工智慧" name="sort2" >人工智慧
   <input type="radio" value="作業系統" name="sort2" >作業系統
   <input type="radio" value="資料庫" name="sort2" >資料庫<br>
   <input type="radio" value="物聯網" name="sort2" >物聯網
   <input type="radio" value="大數據" name="sort2" >大數據
   <input type="radio" value="區塊鏈" name="sort2" >區塊鏈
   <input type="radio" value="NFT" name="sort2" >NFT
   <input type="radio" value="元宇宙" name="sort2" >元宇宙
   <input type="radio" value="虛擬實境" name="sort2" >虛擬實境
   <input type="radio" value="雲端運算" name="sort2" >雲端運算
   <br>
   <input type="submit" name="send3" value="確認送出">
<?php
include("my_msg.php");
if (isset($_POST["send"])) {
   $url="https://www.youtube.com/results?search_query=".$_POST['text'];
   my_header($url);
   }
if (isset($_POST["send2"])) {
   $url="https://www.youtube.com/results?search_query=".$_POST['sort'];
   my_header($url);
   }
if (isset($_POST["send3"])) {
   $url="https://www.youtube.com/results?search_query=".$_POST['sort2'];
   my_header($url);
   }
?>
</body>
</html>