返回列表 發帖

剪刀石頭布_game.php

  1. <html>
  2.         <head>
  3.                 <title>剪刀石頭布遊戲</title>
  4.                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.         </head>
  6.         <body>
  7.                 <!-- get=>網址傳址, post=>封包傳值 action="送出到指定頁面" -->
  8.                 <form method="post" action="process.php">
  9.                 姓名:<input type="text" name="name" /><br />
  10.                 性別:
  11.                 <label><input type="radio" name="gender" value="M" checked="checked" />男</label>
  12.                 <label><input type="radio" name="gender" value="F" />女</label><br />
  13.                 請選擇
  14.                 <select name="type">
  15.                         <option value="scissors">剪刀</option>
  16.                         <option value="stone">石頭</option>
  17.                         <option value="paper">布</option>
  18.                 </select><br />
  19.                 <input type="submit" name="send" value="送出!" />
  20.                 </form>
  21.         </body>
  22. </html>
複製代碼
May

返回列表